Aircall Calls API

The Calls API from Aircall — 7 operation(s) for calls.

Operations 7

GET /calls List calls #
GET /calls/search Search calls #
GET /calls/{id} Retrieve call #
POST /calls/{id}/transfer Transfer a call #
POST /calls/{id}/comments Add comment to a call #
POST /calls/{id}/tags Tag a call #
PUT /calls/{id}/archive Archive a call #

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/aircall-calls-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

aircall-calls-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aircall Public Calls API
  version: v1
  description: 'Best-effort OpenAPI 3.1 representation of the Aircall Public API derived from

    https://developer.aircall.io/api-references/. Aircall is a cloud phone

    system. Resources include users, teams, calls, numbers, contacts, tags,

    messages, webhooks, dialer campaigns, conversation intelligence, and the

    AI voice agent. Authentication supports OAuth 2.0 (for technology partners)

    or HTTP Basic auth using api_id / api_token (for customers). Rate limit:

    120 requests per minute per API key.

    '
  contact:
    name: Aircall Developer
    url: https://developer.aircall.io/api-references/
servers:
- url: https://api.aircall.io/v1
  description: Aircall production API
security:
- BasicAuth: []
- OAuth2:
  - public_api
tags:
- name: Calls
paths:
  /calls:
    get:
      tags:
      - Calls
      summary: List calls
      operationId: listCalls
      responses:
        '200':
          description: OK
  /calls/search:
    get:
      tags:
      - Calls
      summary: Search calls
      operationId: searchCalls
      responses:
        '200':
          description: OK
  /calls/{id}:
    get:
      tags:
      - Calls
      summary: Retrieve call
      operationId: getCall
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
  /calls/{id}/transfer:
    post:
      tags:
      - Calls
      summary: Transfer a call
      operationId: transferCall
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
  /calls/{id}/comments:
    post:
      tags:
      - Calls
      summary: Add comment to a call
      operationId: commentCall
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '201':
          description: Created
  /calls/{id}/tags:
    post:
      tags:
      - Calls
      summary: Tag a call
      operationId: tagCall
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
  /calls/{id}/archive:
    put:
      tags:
      - Calls
      summary: Archive a call
      operationId: archiveCall
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: Aircall customer authentication using api_id (username) and api_token (password) sent as HTTP Basic auth.
    OAuth2:
      type: oauth2
      description: OAuth 2.0 authorization code flow for Aircall Marketplace technology partners.
      flows:
        authorizationCode:
          authorizationUrl: https://auth.aircall.io/oauth/authorize
          tokenUrl: https://auth.aircall.io/oauth/token
          scopes:
            public_api: Access to the Aircall Public API