Leads

Get one of your leads

Returns a single lead this account owns, in the same shape the list returns. A lead belonging to someone else is 404, not 403 — a 403 would confirm the id is real. Free. Requires the leads:read scope when called with a scoped key.

GET/v1/leads/{id}

Returns a single lead this account owns, in the same shape the list returns. A lead belonging to someone else is 404, not 403 — a 403 would confirm the id is real. Free. Requires the leads:read scope when called with a scoped key.

AuthorizationBearer <token>

Pass Authorization: Bearer mapleads_xxx.

In: header

Path Parameters

id*string

Lead id.

Response Body

application/json

curl -X GET "https://example.com/v1/leads/string"
{  "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"  }}