Skip to main content
GET
/
api
/
v1
/
contacts
List contacts (Enterprise)
curl --request GET \
  --url https://api.optimaldial.com/api/v1/contacts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "phone": "+15551234567",
      "properties": {},
      "status": "queued",
      "credits_charged": 1,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "optimaldial_status": "<string>",
      "error_message": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.optimaldial.com/llms.txt

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

Authorizations

Authorization
string
header
required

OptimalDial API key, prefixed od_live_, sent as Authorization: Bearer .... Mint keys in the in-app developer panel; they are scoped to a single organization.

Query Parameters

status
enum<string>
Available options:
queued,
processing,
completed,
failed,
discarded
limit
integer
default:50
Required range: 1 <= x <= 100
cursor
string

Response

Cursor-paginated list, newest first.

data
object[]
required
next_cursor
string | null