Resemble AI subpackage_agentPhoneNumbers API

The subpackage_agentPhoneNumbers API from Resemble AI — 3 operation(s) for subpackage_agentphonenumbers.

Operations 5

GET /phone_numbers List agent phone numbers #
POST /phone_numbers Create agent phone number #
GET /phone_numbers/{id} Get agent phone number #
DELETE /phone_numbers/{id} Delete agent phone number #
DELETE /phone_numbers/{id}/force Force delete agent phone number #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/resemble-ai-subpackage-agentphonenumbers-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

resemble-ai-subpackage-agentphonenumbers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_account Subpackage Agent Phone Numbers API
  version: 1.0.0
servers:
- url: https://f.cluster.resemble.ai
- url: https://app.resemble.ai/api/v2
tags:
- name: subpackage_agentPhoneNumbers
paths:
  /phone_numbers:
    get:
      operationId: list-phone-numbers
      summary: List agent phone numbers
      description: List all agent phone numbers
      tags:
      - subpackage_agentPhoneNumbers
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of phone numbers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Phone_Numbers_listPhoneNumbers_Response_200'
    post:
      operationId: create-phone-number
      summary: Create agent phone number
      description: Create a new agent phone number
      tags:
      - subpackage_agentPhoneNumbers
      parameters:
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Phone number created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Phone_Numbers_createPhoneNumber_Response_200'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                phone_number:
                  type: string
                  description: E.164 formatted phone number
                label:
                  type: string
                supports_inbound:
                  type: boolean
                  default: false
                supports_outbound:
                  type: boolean
                  default: false
                provider:
                  $ref: '#/components/schemas/PhoneNumbersPostRequestBodyContentApplicationJsonSchemaProvider'
                twilio_account_sid:
                  type: string
                twilio_auth_token:
                  type: string
                outbound_trunk:
                  $ref: '#/components/schemas/PhoneNumbersPostRequestBodyContentApplicationJsonSchemaOutboundTrunk'
                inbound_trunk:
                  $ref: '#/components/schemas/PhoneNumbersPostRequestBodyContentApplicationJsonSchemaInboundTrunk'
              required:
              - phone_number
              - label
  /phone_numbers/{id}:
    get:
      operationId: get-phone-number
      summary: Get agent phone number
      description: Get agent phone number details
      tags:
      - subpackage_agentPhoneNumbers
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Phone number details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Phone_Numbers_getPhoneNumber_Response_200'
    delete:
      operationId: delete-phone-number
      summary: Delete agent phone number
      description: Delete an agent phone number
      tags:
      - subpackage_agentPhoneNumbers
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Phone number deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Phone_Numbers_deletePhoneNumber_Response_200'
  /phone_numbers/{id}/force:
    delete:
      operationId: force-delete-phone-number
      summary: Force delete agent phone number
      description: Force delete an agent phone number even if linked to agent
      tags:
      - subpackage_agentPhoneNumbers
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: API token from https://app.resemble.ai/account/api
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Phone number force deleted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent_Phone_Numbers_forceDeletePhoneNumber_Response_200'
components:
  schemas:
    PhoneNumbersGetResponsesContentApplicationJsonSchemaItemsItems:
      type: object
      properties: {}
      title: PhoneNumbersGetResponsesContentApplicationJsonSchemaItemsItems
    Agent_Phone_Numbers_listPhoneNumbers_Response_200:
      type: object
      properties:
        success:
          type: boolean
        items:
          type: array
          items:
            $ref: '#/components/schemas/PhoneNumbersGetResponsesContentApplicationJsonSchemaItemsItems'
      title: Agent Phone Numbers_listPhoneNumbers_Response_200
    Agent_Phone_Numbers_getPhoneNumber_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/PhoneNumbersIdGetResponsesContentApplicationJsonSchemaItem'
      title: Agent Phone Numbers_getPhoneNumber_Response_200
    Agent_Phone_Numbers_createPhoneNumber_Response_200:
      type: object
      properties:
        success:
          type: boolean
        item:
          $ref: '#/components/schemas/PhoneNumbersPostResponsesContentApplicationJsonSchemaItem'
        message:
          type: string
      title: Agent Phone Numbers_createPhoneNumber_Response_200
    Agent_Phone_Numbers_deletePhoneNumber_Response_200:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
      title: Agent Phone Numbers_deletePhoneNumber_Response_200
    Agent_Phone_Numbers_forceDeletePhoneNumber_Response_200:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
      title: Agent Phone Numbers_forceDeletePhoneNumber_Response_200
    PhoneNumbersPostRequestBodyContentApplicationJsonSchemaOutboundTrunk:
      type: object
      properties: {}
      title: PhoneNumbersPostRequestBodyContentApplicationJsonSchemaOutboundTrunk
    PhoneNumbersPostResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: PhoneNumbersPostResponsesContentApplicationJsonSchemaItem
    PhoneNumbersPostRequestBodyContentApplicationJsonSchemaProvider:
      type: string
      enum:
      - twilio
      title: PhoneNumbersPostRequestBodyContentApplicationJsonSchemaProvider
    PhoneNumbersPostRequestBodyContentApplicationJsonSchemaInboundTrunk:
      type: object
      properties: {}
      title: PhoneNumbersPostRequestBodyContentApplicationJsonSchemaInboundTrunk
    PhoneNumbersIdGetResponsesContentApplicationJsonSchemaItem:
      type: object
      properties: {}
      title: PhoneNumbersIdGetResponsesContentApplicationJsonSchemaItem
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token from https://app.resemble.ai/account/api