curl --request GET \
--url https://api.tryfuse.ai/api/v1/business/lists \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.tryfuse.ai/api/v1/business/lists"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.tryfuse.ai/api/v1/business/lists', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "68a1f20b9c41d20014b3e901",
"name": "Q3 Fintech CFOs",
"entityType": "contactList",
"contactsCount": 412,
"companiesCount": 0,
"createdAt": "2026-07-01T09:12:44.000Z",
"folderId": null
},
{
"id": "68a1f20b9c41d20014b3e905",
"name": "Travel companies",
"entityType": "companyList",
"contactsCount": 0,
"companiesCount": 20,
"createdAt": "2026-06-28T11:55:33.319Z",
"folderId": "68a1f9aa9c41d20014b3f101"
}
],
"pagination": {
"pageNum": 1,
"totalPages": 26,
"totalRecords": 52
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}List the token owner's prospect lists
Pages through the workspace’s prospect lists, newest-created first; system-generated lists (All Enriched Contacts and the like) are never included. entityType restricts to contact or company lists, folderId to one folder, and search matches list names case-insensitively. Each row carries its kind, its contact/company counts, and the folder it sits in (folderId: null = root). Use pageNum/limit to page (pagination.totalRecords is the overall count).
Errors:
422VALIDATION_FAILED— A query parameter failed validation (e.g. limit above 1000, folderId not a 24-hex id).429RATE_LIMITED— The lists rate bucket (120/min, 10,000/day per token owner) is exhausted.
Requires one of the following token scopes: lists.
curl --request GET \
--url https://api.tryfuse.ai/api/v1/business/lists \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.tryfuse.ai/api/v1/business/lists"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.tryfuse.ai/api/v1/business/lists', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "68a1f20b9c41d20014b3e901",
"name": "Q3 Fintech CFOs",
"entityType": "contactList",
"contactsCount": 412,
"companiesCount": 0,
"createdAt": "2026-07-01T09:12:44.000Z",
"folderId": null
},
{
"id": "68a1f20b9c41d20014b3e905",
"name": "Travel companies",
"entityType": "companyList",
"contactsCount": 0,
"companiesCount": 20,
"createdAt": "2026-06-28T11:55:33.319Z",
"folderId": "68a1f9aa9c41d20014b3f101"
}
],
"pagination": {
"pageNum": 1,
"totalPages": 26,
"totalRecords": 52
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}Authorizations
Your API token (af_…) as the Basic-auth username, with an empty password.
Query Parameters
Page size: how many lists to return per page (1-1000, default 50).
1 <= x <= 10001-based page number (default 1); lists are ordered newest-created first.
x >= 1Restrict to one list kind: contactList (people) or companyList (companies); omit for both.
contactList, companyList Only lists inside this folder (24-character hex folder id from GET /business/folders).
Free text (1-200 characters), matched as a case-insensitive substring of the list name; every character is literal, so * and ? are not wildcards and no other field (folder, owner, description) is searched.
1 - 200