Skip to main content
GET
/
agents
/
{agentId}
/
evaluations
List evaluations
curl --request GET \
  --url https://app.relyable.ai/api/agents/{agentId}/evaluations \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "pageCount": 123
  },
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "name": "<string>",
      "scenarioText": "<string>",
      "generalInstructions": "<string>",
      "personalityId": "<string>",
      "agentId": "<string>",
      "createdByUserId": "<string>",
      "workspaceId": "<string>",
      "tixaeCallPhoneNumber": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agentId
string<uuid>
required

Query Parameters

page
integer
default:1
Required range: x > 0
limit
integer
default:10
Required range: 1 <= x <= 100
personalityId
string<uuid>
workspaceId
string
runId
string<uuid>

Response

Successful response

message
string
required
meta
object
required
data
object[]
required
{key}
any