For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
User GuideDeveloper GuidesAPI Reference
User GuideDeveloper GuidesAPI Reference
    • Overview
  • Runtype API
      • POSTBulk delete records
      • GETList records
      • POSTCreate record
      • GETDiscover record schema
      • GETGet field values
      • POSTPreview record filter
      • GETGet record details
      • PUTUpdate record
      • DELDelete record
      • GETGet record step results
      • GETGet record costs
      • GETGet record results
      • DELDelete record result
      • POSTBulk edit records
      • POSTUpload CSV records
Dashboard
LogoLogo
Runtype APIRecords

Get record results

GET
/v1/records/:id/results
GET
/v1/records/:id/results
$curl https://api.runtype.com/v1/records/id/results \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890",
5 "recordId": "rec1234567890abcdef",
6 "promptId": "prm0987654321fedcba",
7 "flowId": "flw1122334455667788",
8 "status": "completed",
9 "createdAt": "2024-06-10T15:45:30Z",
10 "promptName": "User Signup Validation",
11 "flowName": "Onboarding Flow",
12 "result": null
13 }
14 ],
15 "pagination": {
16 "page": 1,
17 "limit": 10,
18 "hasMore": true,
19 "hasPrev": false,
20 "total": 25,
21 "totalPages": 3,
22 "hasNextPage": true,
23 "hasPrevPage": false
24 }
25}
Get all execution results for a specific record with filtering and pagination.
Was this page helpful?
Previous

Delete record result

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Path parameters

idstringRequired

Query parameters

pagestringOptional
limitstringOptional
statusstringOptional
promptIdstringOptional
flowIdstringOptional
fromstringOptional
tostringOptional
sortBystringOptional
sortOrderstringOptional
includeCountstringOptional

Response

Paginated record results
datalist of objects
paginationobject

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error