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
      • GETList flows
      • POSTCreate flow
      • GETGet flow details
      • PUTUpdate flow
      • DELDelete flow
      • GETExport flow for runtime (limited preview)
      • POSTPublish flow
      • POSTRun flow on records of a type
      • GETList flow step results
Dashboard
LogoLogo
Runtype APIFlows

List flows

GET
/v1/flows
GET
/v1/flows
$curl https://api.runtype.com/v1/flows \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "createdAt": "2024-06-10T09:15:00Z",
5 "id": "a3f1c9d2-7b4e-4f8a-9d3e-2b5f6c7d8e9f",
6 "lastRunAt": "2024-06-12T14:45:00Z",
7 "name": "User Onboarding Flow",
8 "updatedAt": "2024-06-12T15:00:00Z"
9 }
10 ],
11 "pagination": {
12 "currentOffset": 0,
13 "hasMore": true,
14 "hasPrev": false,
15 "limit": 10,
16 "nextCursor": "eyJpZCI6IjY3ODkwYWJjZCIsIm9mZnNldCI6MTB9",
17 "prevCursor": null,
18 "currentPage": 1,
19 "totalCount": 25,
20 "totalPages": 3
21 }
22}
Get all flows for the authenticated user with filtering and cursor pagination.
Was this page helpful?
Previous

Create flow

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Query parameters

limitstringOptional
cursorstringOptional
directionstringOptional
includeCountstringOptional
searchstringOptional

Response

Paginated list of flows
datalist of objects
paginationobject

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
500
Internal Server Error