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 agents
      • POSTCreate agent
      • POSTFetch external agent card
      • POSTRefresh cached agent card
      • GETGet agent details
      • PUTUpdate agent
      • DELDelete agent
      • GETExport agent for runtime
      • GETList agent executions
      • GETGet execution detail
      • GETList tool calls
      • GETGet tool call detail
      • POSTPublish agent
      • POSTAdd capability to agent
      • DELRemove capability from agent
Dashboard
LogoLogo
Runtype APIAgents

List agents

GET
/v1/agents
GET
/v1/agents
$curl https://api.runtype.com/v1/agents \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "id": "a3f1c9e2-7b4d-4f8a-9d2e-5b6c7d8e9f01",
5 "name": "Sales Assistant",
6 "description": "AI agent that helps with lead qualification and follow-ups",
7 "icon": "🤖",
8 "primaryFlowId": "flow-12345abcde",
9 "config": {
10 "language": "en-US",
11 "timezone": "America/New_York",
12 "maxConcurrentTasks": 5
13 },
14 "status": "active",
15 "createdAt": "2024-05-10T09:15:00Z",
16 "updatedAt": "2024-06-01T12:00:00Z",
17 "capabilityCount": 12,
18 "lastRunAt": "2024-06-10T14:45:00Z"
19 }
20 ],
21 "pagination": {
22 "nextCursor": "cursor_abcdef123456",
23 "prevCursor": "cursor_123456abcdef",
24 "hasMore": true,
25 "hasPrev": true,
26 "limit": 20,
27 "currentOffset": 20,
28 "totalPages": 5,
29 "currentPage": 2,
30 "totalCount": 100
31 }
32}
Get all agents for the authenticated user with filtering and cursor pagination.
Was this page helpful?
Previous

Create agent

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Query parameters

limitstringOptional
cursorstringOptional
includeCountstringOptional
searchstringOptional

Response

Paginated list of agents
datalist of objects
paginationobject

Errors

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