Searches

List leads for a search

Returns a paginated slice of the job's extracted business leads. Enrichment fields depend on the account's current plan. Requires the leads:read scope when called with a scoped key.

GET/v1/searches/{id}/leads

Returns a paginated slice of the job's extracted business leads. Enrichment fields depend on the account's current plan. Requires the leads:read scope when called with a scoped key.

AuthorizationBearer <token>

Pass Authorization: Bearer mapleads_xxx.

In: header

Path Parameters

id*string

Search identifier.

Formatuuid

Query Parameters

limit?integer

Maximum leads to return. Values above 1000 fall back to the default page size of 100.

Range1 <= value <= 1000
Default100
offset?integer

Number of leads to skip.

Range0 <= value
Default0

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/searches/497f6eca-6276-4993-bfeb-53cbbbba6f08/leads"
{  "data": [    {      "name": "string",      "fullAddress": "string",      "categories": [        "string"      ],      "phone": "string",      "website": "http://example.com",      "rating": 0,      "reviewCount": 0,      "emails": [        {}      ],      "socials": {        "property1": "http://example.com",        "property2": "http://example.com"      }    }  ],  "total": 0}