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>"
}
}
List all leads with cursor-based pagination
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>"
}
}
List of leads retrieved successfully
The response is of type object
.