Skip to main content
GET
/
api
/
v1
/
agents
/
{agent_id}
/
pricing
curl "https://app.talkover.ai/api/v1/agents/550e8400-e29b-41d4-a716-446655440000/pricing" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "data": {
    "agent_id": "550e8400-e29b-41d4-a716-446655440000",
    "currency": "USD",
    "components": {
      "voice_synthesis": {
        "unit": "per_minute",
        "price": 0.045,
        "tier": "high_fidelity"
      },
      "transcription": {
        "unit": "per_minute",
        "price": 0.012
      },
      "language_model": {
        "unit": "per_1k_tokens",
        "input_price": 0.0015,
        "output_price": 0.006
      }
    },
    "transport": {
      "outbound": {
        "country_code": "US",
        "unit": "per_minute",
        "price": 0.018
      },
      "inbound": {
        "country_code": "US",
        "unit": "per_minute",
        "price": 0.0085
      }
    },
    "estimated_cost_per_minute": 0.0855,
    "calculated_at": "2024-01-15T10:30:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.talkover.ai/llms.txt

Use this file to discover all available pages before exploring further.

Get Agent Pricing

Retrieve a detailed cost breakdown for an agent — voice synthesis, transcription, language model, and transport components — based on the agent’s current configuration and your environment’s plan.

Endpoint

GET /api/v1/agents/{agent_id}/pricing

Path Parameters

agent_id
string
required
Agent UUID.

Request Headers

Authorization
string
required
Bearer token for authentication. Format: Bearer talq_your_environment_token_here

Examples

curl "https://app.talkover.ai/api/v1/agents/550e8400-e29b-41d4-a716-446655440000/pricing" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "data": {
    "agent_id": "550e8400-e29b-41d4-a716-446655440000",
    "currency": "USD",
    "components": {
      "voice_synthesis": {
        "unit": "per_minute",
        "price": 0.045,
        "tier": "high_fidelity"
      },
      "transcription": {
        "unit": "per_minute",
        "price": 0.012
      },
      "language_model": {
        "unit": "per_1k_tokens",
        "input_price": 0.0015,
        "output_price": 0.006
      }
    },
    "transport": {
      "outbound": {
        "country_code": "US",
        "unit": "per_minute",
        "price": 0.018
      },
      "inbound": {
        "country_code": "US",
        "unit": "per_minute",
        "price": 0.0085
      }
    },
    "estimated_cost_per_minute": 0.0855,
    "calculated_at": "2024-01-15T10:30:00Z"
  }
}

Notes

  • Pricing reflects the current plan and the agent’s voice/transport configuration. It will change if you upgrade your plan or change the agent’s voice template.
  • For a higher-level summary, use Get Agent Pricing Summary.
  • Use Check Optimized Costs Eligibility to see if your agent qualifies for cached pricing.