> ## 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.

# Obter Resumo de Preços do Agente

> Recuperar um resumo de preços de alto nível para um agente

# Obter Resumo de Preços do Agente

Recupera uma estimativa de custo agregada e em uma única linha para um agente. Mais leve do que o detalhamento completo — útil para exibir preços em listas ou resumos.

## Endpoint

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

## Parâmetros de caminho

<ParamField path="agent_id" type="string" required>
  UUID do agente.
</ParamField>

## Cabeçalhos da requisição

<ParamField header="Authorization" type="string" required>
  Token Bearer para autenticação. Formato: `Bearer talq_your_environment_token_here`
</ParamField>

## Exemplos

<RequestExample>
  ```bash theme={null}
  curl "https://app.talkover.ai/api/v1/agents/550e8400-e29b-41d4-a716-446655440000/pricing/summary" \
    -H "Authorization: Bearer talq_your_environment_token_here"
  ```

  ```javascript theme={null}
  const response = await fetch('https://app.talkover.ai/api/v1/agents/550e8400-e29b-41d4-a716-446655440000/pricing/summary', {
    headers: { 'Authorization': 'Bearer talq_your_environment_token_here' }
  });

  const result = await response.json();
  ```
</RequestExample>

## Resposta

<ResponseExample>
  ```json theme={null}
  {
    "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
    }
  }
  ```
</ResponseExample>

## Observações

* Para um detalhamento completo por componente, use [Obter Preços do Agente](/api-reference/endpoints/get-agent-pricing).
* `optimized_costs_enabled` reflete se o agente usa atualmente preços otimizados/com cache. Veja [Verificar Elegibilidade para Custos Otimizados](/api-reference/endpoints/check-optimized-costs-eligibility).
