curl --request GET \
--url https://api.tryfuse.ai/api/v1/business/saved-searches \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.tryfuse.ai/api/v1/business/saved-searches"
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/saved-searches', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"savedSearches": [
{
"id": "6a8d82c6305c048277b9e535",
"title": "ss25aug",
"createdAt": "2026-08-25T11:55:50.968Z",
"updatedAt": "2026-08-25T11:55:50.968Z",
"filters": {
"status": [
{
"label": "Active",
"value": "active",
"status": "include"
}
],
"industriesV2": [
{
"label": "Travel & Tourism",
"value": "Travel & Tourism",
"status": "include"
},
{
"label": "Artificial Intelligence",
"value": "Artificial Intelligence",
"status": "exclude"
}
]
},
"ignoredFilterKeys": [],
"searchType": "company"
},
{
"id": "6a8d75e85eb3d2ad77913e36",
"title": "ss25aug",
"createdAt": "2026-08-25T11:00:56.030Z",
"updatedAt": "2026-08-25T11:00:56.030Z",
"filters": {
"job_company_name": [
{
"status": "include",
"value": "costar group"
}
],
"job_title_role": [
{
"status": "include",
"value": "engineering"
}
],
"job_title_sub_role": [
{
"status": "include",
"value": "software"
}
]
},
"ignoredFilterKeys": [],
"searchType": "people"
}
]
}{
"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 saved searches
Every saved search the token owner has, people and company alike, newest-updated first; ?type=people|company narrows to one kind. The listing is complete — there is no paging.
filters is reported in the language the matching search endpoint accepts (POST /prospects/search for people, POST /companies/search for company), so a listed search can be re-run or edited without a translation step: pass the row’s id as savedSearchId, or send its filters back verbatim. ignoredFilterKeys names stored keys that have no equivalent search field and were dropped from filters; the product’s own UI skips them too, so a run matches what the app shows.
Errors:
422VALIDATION_FAILED— The request failed the declared schema;paramnames the offending key andmessagequotes the rule it broke.429RATE_LIMITED— Per-token rate limit for this bucket exhausted; retry after the window in the RateLimit-Reset header.500UNEXPECTED_ERROR— The request failed inside the service; nothing was billed and the request_id identifies the failure.
Requires one of the following token scopes: search.
curl --request GET \
--url https://api.tryfuse.ai/api/v1/business/saved-searches \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.tryfuse.ai/api/v1/business/saved-searches"
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/saved-searches', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"savedSearches": [
{
"id": "6a8d82c6305c048277b9e535",
"title": "ss25aug",
"createdAt": "2026-08-25T11:55:50.968Z",
"updatedAt": "2026-08-25T11:55:50.968Z",
"filters": {
"status": [
{
"label": "Active",
"value": "active",
"status": "include"
}
],
"industriesV2": [
{
"label": "Travel & Tourism",
"value": "Travel & Tourism",
"status": "include"
},
{
"label": "Artificial Intelligence",
"value": "Artificial Intelligence",
"status": "exclude"
}
]
},
"ignoredFilterKeys": [],
"searchType": "company"
},
{
"id": "6a8d75e85eb3d2ad77913e36",
"title": "ss25aug",
"createdAt": "2026-08-25T11:00:56.030Z",
"updatedAt": "2026-08-25T11:00:56.030Z",
"filters": {
"job_company_name": [
{
"status": "include",
"value": "costar group"
}
],
"job_title_role": [
{
"status": "include",
"value": "engineering"
}
],
"job_title_sub_role": [
{
"status": "include",
"value": "software"
}
]
},
"ignoredFilterKeys": [],
"searchType": "people"
}
]
}{
"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
Restrict the listing to one kind, people or company; omitted returns both.
people, company Response
Success
Show child attributes
Show child attributes