curl --request POST \
--url https://api.verial.ai/runs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"benchmark_id": "<string>",
"environment_id": "<string>",
"interfaces": [
{
"type": "<string>"
}
]
}
'{
"id": "2023-11-07T05:31:56Z",
"benchmark_id": "2023-11-07T05:31:56Z",
"status": "<string>",
"verdict": "<string>",
"score": 123,
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}Execute a benchmark and produce a run.
curl --request POST \
--url https://api.verial.ai/runs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"benchmark_id": "<string>",
"environment_id": "<string>",
"interfaces": [
{
"type": "<string>"
}
]
}
'{
"id": "2023-11-07T05:31:56Z",
"benchmark_id": "2023-11-07T05:31:56Z",
"status": "<string>",
"verdict": "<string>",
"score": 123,
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}API key passed as a Bearer token.