Skip to main content
GET
/
agents
/
phone-numbers
/
providers
List Providers
curl --request GET \
  --url https://api.cartesia.ai/agents/phone-numbers/providers \
  --header 'Authorization: Bearer <token>' \
  --header 'Cartesia-Version: <cartesia-version>'
[
  {
    "id": "<string>",
    "account_sid": "<string>",
    "api_key_sid": "<string>",
    "region": "us1"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cartesia.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Cartesia API key (sk_car_...). Get one at play.cartesia.ai/keys.

Headers

Cartesia-Version
enum<string>
required

API version header.

Available options:
2026-03-01
Example:

"2026-03-01"

Query Parameters

type
enum<string>

Filter by provider type.

Available options:
twilio
account_sid
string

Filter by account SID (Twilio providers only).

Response

200 - application/json
type
enum<string>
required

Always "twilio".

Available options:
twilio
id
string
required

Unique identifier for the provider.

account_sid
string
required

The Twilio account SID.

api_key_sid
string
required

The Twilio API key SID (partially masked).

region
enum<string>
default:us1
required

The Twilio region the phone number and API key are configured for. us1 (US), ie1 (Ireland), au1 (Australia). Default is us1.

Available options:
us1,
ie1,
au1