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.
/v1/searchesReturns up to the 50 most recent searches owned by the authenticated user. Requires the searches:read scope when called with a scoped key.
Pass Authorization: Bearer mapleads_xxx.
In: header
Query Parameters
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 } } ]}Overview
Previous Page
Create a search POST
Starts one asynchronous maps search. The job begins in `pending`; poll the returned job URL until it reaches `completed` or `failed`. Creating a job requires an active subscription or trial, and available credits. Requires the `searches:write` scope when called with a scoped key.