メインコンテンツへスキップ
GET
/
agents
/
phone-numbers
/
providers
/
{id}
Get Provider
curl --request GET \
  --url https://api.cartesia.ai/agents/phone-numbers/providers/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Cartesia-Version: <cartesia-version>'
{
  "type": "twilio",
  "id": "<string>",
  "account_sid": "<string>",
  "api_key_sid": "<string>",
  "region": "us1"
}

承認

Authorization
string
header
必須

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

ヘッダー

Cartesia-Version
enum<string>
必須

API version header.

利用可能なオプション:
2026-03-01
:

"2026-03-01"

パスパラメータ

id
string
必須

The provider ID.

レスポンス

A telephony provider account.

type
enum<string>
必須

Always "twilio".

利用可能なオプション:
twilio
id
string
必須

Unique identifier for the provider.

account_sid
string
必須

The Twilio account SID.

api_key_sid
string
必須

The Twilio API key SID (partially masked).

region
enum<string>
デフォルト:us1
必須

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

利用可能なオプション:
us1,
ie1,
au1