Skip to main content

Get Agent Response

GET /api/agent-responses/{id}

Retrieve a specific agent response by its ID.

Code Examples

curl --request GET \
--url 'https://tess.pareto.io/api/agent-responses/{id}' \
--header 'Authorization: Bearer YOUR_API_KEY'

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe ID of the agent response

Response


{
"id": 4773337,
"status": "succeeded",
"input": "hello",
"output": "Hello! If you have any questions about the Tess AI documentation, feel free to ask!",
"credits": 0.006145,
"root_id": 4773337,
"created_at": "2025-01-05T19:35:21.000000Z",
"updated_at": "2025-01-05T19:35:23.000000Z",
"template_id": 8794
}

Try it out!

Authentication

This endpoint requires Bearer token authentication.

Test Endpoint