Skip to main content
GET
/
v2
/
saved-searches
/
{savedSearchId}
/
results
Results
curl --request GET \
  --url https://api.bizzy.ai/v2/saved-searches/{savedSearchId}/results \
  --header 'Authorization: Bearer <token>'
{
    "identifier": {
        "savedSearchId": "774411",
        "name": "Belgian SaaS companies",
        "searchType": "COMPANY"
    },
    "data": [
        {
            "countryCode": "BE",
            "companyId": "1778186251",
            "name": "Bizzy"
        }
    ],
    "pagination": {
        "limit": 4,
        "offset": 0,
        "total": 128
    }
}
Executes the saved search against the latest data and returns a page of results. The shape of each item in data depends on the saved search’s searchType (COMPANY, LEGAL_ENTITY or EMPLOYEES).

Request

Accept-Language
string
default:"EN"
  • NL: Dutch - FR: French - EN: English

Path

savedSearchId
string
required
Obfuscated savedSearchId returned by the overview endpoint.

Query

limit
number
default:"4"
Number of items to return per page. (max 500)
offset
number
default:"0"
Number of items to skip.

Response

The identifier describes the saved search; data holds the matching entities.
{
    "identifier": {
        "savedSearchId": "774411",
        "name": "Belgian SaaS companies",
        "searchType": "COMPANY"
    },
    "data": [
        {
            "countryCode": "BE",
            "companyId": "1778186251",
            "name": "Bizzy"
        }
    ],
    "pagination": {
        "limit": 4,
        "offset": 0,
        "total": 128
    }
}