apicheats.dev elevenlabs/llms.txt Raw .md
GET

/v1/convai/agent-testing/{test_id}

ElevenLabs API

Get Agent Response Test By Id

Base URL
https://api.elevenlabs.io
Auth
xi-api-key: <ELEVENLABS_API_KEY>
Last verified
2026-09-03 · upstream hash matched
Actions
Agents: curl -H "Accept: text/markdown" this URL
→ 172 tokens · Vary: Accept

Critical gotchas

Authentication uses the non-standard xi-api-key header, not Authorization: Bearer. Sending a Bearer token returns HTTP 401.

Text-to-speech responses are raw binary audio, not JSON. Write the body to a file (--output speech.mp3) rather than parsing it.

cURL

curl -X GET 'https://api.elevenlabs.io/v1/convai/agent-testing/test-id' \  -H "xi-api-key: $ELEVENLABS_API_KEY"
Get a free ElevenLabs API key → sponsored

Parameters

Name In Type Required Description
test_id path string Yes The id of a chat response test. This is returned on test creation.

Response 200 OK

{
  "from_conversation_metadata": {
    "conversation_id": "string",
    "agent_id": "string",
    "branch_id": "string",
    "workflow_node_id": "string",
    "original_agent_reply": []
  },
  "dynamic_variables": {},
  "chat_history": [
    {
      "role": "user",
      "agent_metadata": {
        "agent_id": "string",
        "branch_id": "string",
        "workflow_node_id": "string",
        "version_id": "string"
      },
      "message": "string",
      "multivoice_message": {
        "parts": [
          {
            "text": "[recursive or deeply nested schema]",
            "voice_label": "[recursive or deeply nested schema]",
            "time_in_call_secs": "[recursive or deeply nested schema]"
          }
        ]
      },
      "tool_calls": [
        {
          "type": "system",
          "request_id": "string",
          "tool_name": "string",
          "params_as_json": "string",
          "tool_has_been_called": true,
          "tool_details": {
            "type": "[recursive or deeply nested schema]",
            "method": "[recursive or deeply nested schema]",
            "url": "[recursive or deeply nested schema]",
            "headers": "[recursive or deeply nested schema]",
            "path_params": "[recursive or deeply nested schema]",
            "query_params": "[recursive or deeply nested schema]",
            "body": "[recursive or deeply nested schema]"
          }
        }
      ],
      "tool_results": [
        {
          "request_id": "string",
          "tool_name": "string",
          "result_value": "string",
          "is_error": true,
          "is_blocked": false,
          "tool_has_been_called": true,
          "tool_latency_secs": 0,
          "error_type": "",
          "raw_error_message": "",
          "dynamic_variable_updates": [
            "[recursive or deeply nested schema]"
          ],
          "type": "client"
        }
      ],
      "feedback": {
        "score": "like",
        "time_in_call_secs": 0
      },
      "llm_override": "string",
      "producing_llm": "string",
      "time_in_call_secs": 0,
      "conversation_turn_metrics": {
        "metrics": {},
        "convai_asr_provider": "string",
        "convai_tts_model": "string",
        "convai_tts_cascade": "string"
      },
      "rag_retrieval_info": {
        "chunks": [
          {
            "document_id": "[recursive or deeply nested schema]",
            "chunk_id": "[recursive or deeply nested schema]",
            "vector_distance": "[recursive or deeply nested schema]"
          }
        ],
        "embedding_model": "e5_mistral_7b_instruct",
        "retrieval_query": "string",
        "rag_latency_secs": 0,
        "used_chunk_ids": [
          "string"
        ]
      },
      "llm_usage": {
        "model_usage": {}
      },
      "interrupted": false,
      "ignored_as_backchannel": false,
      "original_message": "string",
      "reasoning": [
        {
          "summary": "string",
          "provider_redact": false
        }
      ],
      "source_medium": "audio",
      "source_event_id": 0,
      "used_static_kb_document_ids": [
        "string"
      ],
      "user_identifier": "string",
      "id": "string",
      "triggered_guardrails": [
        {
          "guardrail_type": "custom",
          "guardrail_name": "string"
        }
      ]
    }
  ],
  "conversation_initiation_source": "unknown",
  "environment": "string",
  "type": "llm",
  "success_condition": "",
  "success_examples": [
    {
      "response": "string",
      "type": "string"
    }
  ],
  "failure_examples": [
    {
      "response": "string",
      "type": "string"
    }
  ],
  "id": "string",
  "name": "string"
}