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 tools
      • POSTCreate tool
      • GETList built-in tools
      • GETList compatible built-in tools
      • GETGet built-in tool schema
      • POSTConvert flow to tool
      • POSTDeploy Runtype Sandbox
      • DELCleanup Runtype Sandbox
      • POSTDeploy Daytona sandbox
      • DELCleanup Daytona sandbox
      • GETGet tool schemas
      • GETGet tool details
      • PUTUpdate tool
      • DELDelete tool
      • POSTExecute tool
      • POSTTest tool
Dashboard
LogoLogo
Runtype APITools

List tools

GET
/v1/tools
GET
/v1/tools
$curl https://api.runtype.com/v1/tools \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "createdAt": "2024-06-10T09:15:00Z",
5 "description": "A tool for automating AI model training workflows.",
6 "id": "a1b2c3d4-e5f6-7890-abcd-1234567890ef",
7 "isActive": true,
8 "name": "AI Trainer Pro",
9 "toolType": "automation",
10 "updatedAt": "2024-06-15T12:00:00Z",
11 "parametersSchema": {
12 "learningRate": {
13 "type": "number",
14 "default": 0.01
15 },
16 "batchSize": {
17 "type": "integer",
18 "default": 32
19 }
20 }
21 }
22 ],
23 "pagination": {
24 "currentOffset": 0,
25 "hasMore": true,
26 "hasPrev": false,
27 "limit": 10,
28 "nextCursor": "cursor_12345",
29 "prevCursor": null,
30 "currentPage": 1,
31 "totalCount": 25,
32 "totalPages": 3
33 }
34}
Get all tools for the authenticated user with filtering and cursor pagination.
Was this page helpful?
Previous

Create tool

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Query parameters

limitstringOptional
cursorstringOptional
directionstringOptional
includeCountstringOptional
distinctstringOptional
tool_typestringOptional
searchstringOptional
isActivestringOptional
idsstringOptional
includestringOptional

Response

Paginated list of tools
datalist of objects
paginationobject

Errors

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