For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • Voice Generation
    • Speech-to-Speech
  • Voice Creation
  • Voice Tools
  • Real-Time Agents
    • Overview
      • Overview
      • List Agent Phone Numbers
      • Get Agent Phone Number
      • Create Agent Phone Number
      • Delete Agent Phone Number
      • Force Delete Agent Phone Number
  • Safety & Detection
Status
LogoLogo
On this page
  • HTTP Request
  • URL Parameters
  • Example Request
  • Response
  • Response Body
Real-Time AgentsAgent Phone Numbers

Get Phone Number

Was this page helpful?
Previous

Create Phone Number

Next
Built with

Retrieve a specific phone number by ID.

HTTP Request

$GET https://app.resemble.ai/api/v2/phone_numbers/{id}

URL Parameters

ParameterTypeDescription
idintegerThe phone number ID

Example Request

$curl --request GET "https://app.resemble.ai/api/v2/phone_numbers/1" \
> -H "Authorization: Bearer YOUR_API_TOKEN" \
> -H "Content-Type: application/json"

Response

1{
2 "success": true,
3 "item": {
4 "id": 1,
5 "phone_number": "+14155551234",
6 "label": "Support Line",
7 "supports_inbound": true,
8 "supports_outbound": false,
9 "provider": "twilio",
10 "status": "active",
11 "agent_id": 123,
12 "agent_name": "Customer Support Agent",
13 "agent_uuid": "550e8400-e29b-41d4-a716-446655440000",
14 "outbound_trunk": {},
15 "inbound_trunk": {},
16 "twilio_account_sid": "AC...",
17 "has_twilio_credentials": true,
18 "created_at": "2025-01-27T10:00:00Z",
19 "updated_at": "2025-01-27T10:00:00Z"
20 }
21}

Response Body

See List Phone Numbers for detailed field descriptions.