Skip to main content
GET
/
v3
/
contact-accounts
/
{id}
/
contacts
List contacts for an account
curl --request GET \
  --url https://api.reply.io/v3/contact-accounts/{id}/contacts \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "email": "<string>",
      "firstName": "<string>",
      "lastName": "<string>",
      "title": "<string>",
      "company": "<string>"
    }
  ],
  "hasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

id
integer
required

Account ID

Query Parameters

top
integer

Maximum number of items to return (default 25, max 1000)

skip
integer

Number of items to skip

Response

Paginated list of contacts linked to the account

items
Contact Account Contact · object[]
hasMore
boolean

Whether more items are available beyond the current page