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
      • GETGet tool schemas
      • GETList built-in tools
      • GETList compatible built-in tools
      • GETGet built-in tool schema
      • GETGet tool details
      • PUTUpdate tool
      • DELDelete tool
Dashboard
LogoLogo
Runtype APITools

List tools

GET
/v1/tools
GET
/v1/tools
$curl https://api.runtype.com/v1/tools \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890",
5 "name": "Content Generator",
6 "description": "AI-powered tool for generating marketing content",
7 "toolType": "text-generation",
8 "isActive": true,
9 "createdAt": "2024-05-10T09:15:00Z",
10 "updatedAt": "2024-06-01T12:00:00Z",
11 "parametersSchema": {
12 "maxTokens": 500,
13 "temperature": 0.7,
14 "language": "en"
15 }
16 }
17 ],
18 "pagination": {
19 "nextCursor": "cursor_12345",
20 "prevCursor": "cursor_12343",
21 "hasMore": true,
22 "hasPrev": true,
23 "limit": 10,
24 "currentOffset": 10,
25 "totalPages": 5,
26 "currentPage": 2,
27 "totalCount": 45
28 }
29}
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