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

Get tool details

GET
/v1/tools/:id
GET
/v1/tools/:id
$curl https://api.runtype.com/v1/tools/id \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "config": {
3 "maxTokens": 2048,
4 "temperature": 0.7,
5 "model": "gpt-4",
6 "stopSequences": [
7 "\n\n"
8 ]
9 },
10 "createdAt": "2024-05-20T10:15:30Z",
11 "description": "AI-powered text generation tool for content creation and automation.",
12 "id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890",
13 "isActive": true,
14 "name": "Content Generator",
15 "organizationId": "org-9876543210",
16 "toolType": "text-generation",
17 "updatedAt": "2024-06-01T08:45:00Z",
18 "userId": "user-1234567890",
19 "parametersSchema": {
20 "prompt": {
21 "type": "string",
22 "description": "Input text prompt for the AI model"
23 },
24 "maxTokens": {
25 "type": "integer",
26 "description": "Maximum number of tokens to generate"
27 },
28 "temperature": {
29 "type": "number",
30 "description": "Sampling temperature for generation"
31 }
32 }
33}
Get a tool by ID including its full configuration.
Was this page helpful?
Previous

Update tool

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Path parameters

idstringRequired

Response

Tool details
configmap from strings to any or null
createdAtstring
descriptionstring or null
idstring
isActiveboolean
namestring
organizationIdstring or null
toolTypestring
updatedAtstring
userIdstring
parametersSchemamap from strings to any

Errors

401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error