Retell AI Concurrency API

The Concurrency API from Retell AI — 1 operation(s) for concurrency.

Documentation

📖
Documentation
https://docs.retellai.com/build/create-your-first-agent
📖
APIReference
https://docs.retellai.com/api-references/create-agent
📖
Documentation
https://docs.retellai.com/build/llms/overview
📖
APIReference
https://docs.retellai.com/api-references/create-retell-llm
📖
Documentation
https://docs.retellai.com/build/conversation-flow/overview
📖
APIReference
https://docs.retellai.com/api-references/create-conversation-flow
📖
Documentation
https://docs.retellai.com/make-calls/outbound-call
📖
APIReference
https://docs.retellai.com/api-references/create-phone-call
📖
Documentation
https://docs.retellai.com/make-calls/web-call
📖
APIReference
https://docs.retellai.com/api-references/create-web-call
📖
Documentation
https://docs.retellai.com/deploy/phone-number
📖
APIReference
https://docs.retellai.com/api-references/create-phone-number
📖
Documentation
https://docs.retellai.com/build/voices
📖
APIReference
https://docs.retellai.com/api-references/list-voices
📖
Documentation
https://docs.retellai.com/build/knowledge-base
📖
APIReference
https://docs.retellai.com/api-references/create-knowledge-base
📖
Documentation
https://docs.retellai.com/make-calls/batch-call
📖
APIReference
https://docs.retellai.com/api-references/create-batch-call
📖
APIReference
https://docs.retellai.com/api-references/get-concurrency
📖
RateLimits
https://raw.githubusercontent.com/api-evangelist/retell/refs/heads/main/rate-limits/retell-rate-limits.yml

Specifications

OpenAPI Specification

retell-concurrency-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Retell AI Agent Concurrency API
  description: REST API for building, testing, and deploying AI voice agents that make and receive phone and web calls. Configure a response engine (Retell LLM, a custom LLM, or a Conversation Flow), attach a voice, provision phone numbers, place outbound and web calls, run batch campaigns, ground agents with knowledge bases, and read back transcripts, recordings, and call analysis. All endpoints are authenticated with a Bearer API key.
  termsOfService: https://www.retellai.com/terms-of-service
  contact:
    name: Retell AI Support
    url: https://docs.retellai.com
  version: '2.0'
servers:
- url: https://api.retellai.com
security:
- api_key: []
tags:
- name: Concurrency
paths:
  /get-concurrency:
    get:
      operationId: getConcurrency
      tags:
      - Concurrency
      summary: Get current and maximum call concurrency.
      description: Returns the organization's current number of ongoing calls, base and purchased concurrency limits, burst settings, and reserved inbound concurrency.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConcurrencyResponse'
components:
  schemas:
    ConcurrencyResponse:
      type: object
      properties:
        current_concurrency:
          type: integer
          description: Number of ongoing calls in the org.
        concurrency_limit:
          type: integer
        base_concurrency:
          type: integer
          description: Free concurrency limit of the org.
        purchased_concurrency:
          type: integer
        concurrency_purchase_limit:
          type: integer
        remaining_purchase_limit:
          type: integer
        reserved_inbound_concurrency:
          type: integer
        concurrency_burst_enabled:
          type: boolean
        concurrency_burst_limit:
          type: integer
  securitySchemes:
    api_key:
      type: http
      scheme: bearer
      bearerFormat: apiKey
      description: 'Retell API key, sent as: Authorization: Bearer <RETELL_API_KEY>'