Skip to main content
GET
/
v1
/
contacts
cURL
curl --request GET \
  --url https://api.transmit.dev/v1/contacts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "email": "jsmith@example.com",
      "phone_number": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "email_subscribed": true,
      "sms_subscribed": true,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your API key with 'tx_' prefix. Get your API key from the dashboard.

Response

Contacts retrieved successfully

data
object[]
required
has_more
boolean
required

Whether there are more results

next_cursor
string

Cursor for next page

⌘I