Skip to main content
GET
/
api
/
v1
/
agents
/
{agent_id}
/
pricing
/
summary
curl "https://app.talkover.ai/api/v1/agents/550e8400-e29b-41d4-a716-446655440000/pricing/summary" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "data": {
    "agent_id": "550e8400-e29b-41d4-a716-446655440000",
    "currency": "USD",
    "estimated_cost_per_minute": 0.0855,
    "voice_quality_tier": "high_fidelity",
    "optimized_costs_enabled": false
  }
}

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 Summary

Retrieve an aggregated, single-line cost estimate for an agent. Lighter than the full breakdown — useful for showing pricing in lists or summaries.

Endpoint

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

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/summary" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "data": {
    "agent_id": "550e8400-e29b-41d4-a716-446655440000",
    "currency": "USD",
    "estimated_cost_per_minute": 0.0855,
    "voice_quality_tier": "high_fidelity",
    "optimized_costs_enabled": false
  }
}

Notes