Searches

List searches

Returns up to the 50 most recent searches owned by the authenticated user. Requires the searches:read scope when called with a scoped key.

GET/v1/searches

Returns up to the 50 most recent searches owned by the authenticated user. Requires the searches:read scope when called with a scoped key.

AuthorizationBearer <token>

Pass Authorization: Bearer mapleads_xxx.

In: header

Query Parameters

provider?array<>

Source maps to keep. Repeat the parameter or comma-separate. Omit to include all three — there is no default map. The same business can appear once per map; those are separate rows with separate identifiers, not duplicates.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/searches"
{  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "provider": "google",      "status": "pending",      "keyword": "string",      "location": "string",      "language": "string",      "maxResults": 0,      "resultCount": 0,      "error": "string",      "createdAt": "2019-08-24T14:15:22Z",      "progress": {        "phase": "searching",        "found": 0,        "processed": 0,        "failed": 0      }    }  ]}