Skip to main content
GET
/
api
/
leads
List Leads
curl --request GET \
  --url https://api.trysela.com/api/leads/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "count": 1023,
      "next": "https://api.trysela.com/api/leads/?page=2",
      "previous": null,
      "results": [
        {
          "id": 28013,
          "email": "[email protected]",
          "phone_number": "+18042221111",
          "metadata": {
            "phone_number": "+18042221111",
            "email": "[email protected]",
            "first_name": "First",
            "last_name": "Name",
            "timezone": "America/Los_Angeles",
            "created_at": "02/28/2025 15:09",
            "property_address": "123 Main St",
            "property_city": "San Francisco",
            "property_state": "California",
            "property_zip": "94101",
            "address": "456 2nd St",
            "city": "Los Angeles",
            "state": "California",
            "zip": "90001",
            "lead_source": "USDALoans.com",
            "external_id": "id_in_your_crm_123"
          },
          "modified_time": "2025-02-28T15:09:03.139554-08:00",
          "created_time": "2025-02-28T15:09:03.122515-08:00",
          "status": "OPEN",
          "status_reason": null,
          "lead_source": "USDALoans.com",
          "lead_type": 123,
          "next_call_time": "025-02-28T15:09:03.122515-08:00",
          "next_call_time_reason": "FIRST_CALL",
          "external_id": "id_in_your_crm_123",
          "us_state": "CA",
          "received_time": "2025-02-28T15:09:03.122515-08:00",
          "reengagements_count": 0,
          "last_reengagement_time": null,
          "call_schedule_start_time": null,
          "sms_dnc": false,
          "call_dnc": false
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Query Parameters

email
string
external_id
string
page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

phone_number
string
user
integer

Response

200 - application/json

Paginated list of leads.

count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?page=4"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?page=2"