Maxim Logo
Test Runs/Entries

Get test run entries

Get test run entries

GET
/v1/test-runs/entries

Authorization

x-maxim-api-key<token>

API key for authentication

In: header

Query Parameters

workspaceIdRequiredstring

Unique identifier for the workspace

idRequiredstring

Test run ID to fetch entries for

entryIdstring

Entry ID to fetch detailed information for a specific entry

pagenumber

Page number for pagination

Default: 1Minimum: 1
limitnumber

Maximum number of records to return (max: 100)

Default: 20Maximum: 100
sortstring

Sort order for the results

searchQuerystring

Search query to filter results

filtersarray<object>

Additional filters for the query

curl -X GET "https://api.getmaxim.ai/v1/test-runs/entries?workspaceId=%3Cstring%3E&id=%3Cstring%3E&entryId=%3Cstring%3E&page=1&limit=20&sort=%3Cstring%3E&searchQuery=%3Cstring%3E&filters=%5Bobject+Object%5D" \
  -H "x-maxim-api-key: <token>"

Successfully fetched test run entries

{
  "data": {
    "runs": [
      {}
    ],
    "total": 0
  }
}