GET
/
api
/
v1
/
leads
List all leads
curl --request GET \
  --url https://prod.featherhq.com/api/v1/leads \
  --header 'X-API-Key: <api-key>'
{
  "leads": [
    {
      "id": "<string>",
      "organizationId": "<string>",
      "customerLeadId": "<string>",
      "customer": {},
      "conversationHistory": [
        "<any>"
      ],
      "phoneNumber": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "pagination": {
    "limit": 10,
    "nextCursor": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

Query Parameters

cursor
string
limit
string
default:10

Response

200
application/json

List of leads retrieved successfully

The response is of type object.