Skip to main content
GET
/
tools
/
{toolName}
/
schema
Get schema for a specific tool
curl --request GET \
  --url https://api.flipsidecrypto.xyz/public/v3/tools/{toolName}/schema \
  --header 'x-api-key: <api-key>'
{
  "name": "<string>",
  "description": "<string>",
  "inputSchema": "<unknown>",
  "outputSchema": "<unknown>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

toolName
string
required

The name of the tool

Response

Tool schema retrieved successfully

name
string
required

The tool name

description
string
required

Human-readable description of the tool

inputSchema
any | null

JSON Schema for the tool's input

outputSchema
any | null

JSON Schema for the tool's output