List contact lists
curl --request GET \
--url http://localhost:8787/api/v1/contact-lists \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/contact-lists"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/contact-lists', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Contact Lists
List contact lists
Retrieve all contact lists for the tenant
GET
/
contact-lists
List contact lists
curl --request GET \
--url http://localhost:8787/api/v1/contact-lists \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/contact-lists"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/contact-lists', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Returns all contact lists belonging to your tenant, ordered by creation date descending.
curl -X GET https://api.agentic-os.com/api/v1/contact-lists \
-H "Authorization: Bearer $AGENTIC_OS_API_KEY"
import requests
response = requests.get(
"https://api.agentic-os.com/api/v1/contact-lists",
headers={"Authorization": f"Bearer {API_KEY}"},
)
print(response.json())
const response = await fetch("https://api.agentic-os.com/api/v1/contact-lists", {
method: "GET",
headers: { Authorization: `Bearer ${API_KEY}` },
});
const data = await response.json();
console.log(data);
Response
[
{
"id": "33333333-3333-3333-3333-333333333333",
"tenantId": "990e8400-e29b-41d4-a716-446655440000",
"name": "Q3 Target Leads",
"metadata": {
"source": "hubspot_export"
},
"createdAt": "2026-06-01T09:00:00.000Z",
"updatedAt": "2026-06-01T09:00:00.000Z"
}
]
⌘I

