Arcade · Example Payload

Arcade Engine Tool Spec Example

AgentsMCPAI AgentsAuthorizationOAuthTool CallingAgent InfrastructureLLMIntegrations

Arcade Engine Tool Spec Example is an example object payload from Arcade, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationmethodpathsummaryresponse

Example Payload

Raw ↑
{
  "operation": "tool-spec",
  "method": "GET",
  "path": "/v1/tools/{name}",
  "summary": "Get Arcade Tool Specification",
  "response": {
    "description": "string",
    "formatted_schema": {},
    "fully_qualified_name": "string",
    "input": {
      "parameters": []
    },
    "metadata": {
      "behavior": null,
      "classification": null,
      "extras": {}
    },
    "name": "string",
    "output": {
      "available_modes": [],
      "description": "string",
      "value_schema": null
    },
    "qualified_name": "string",
    "requirements": {
      "authorization": null,
      "met": true,
      "secrets": []
    },
    "toolkit": {
      "description": "string",
      "name": "string",
      "version": "string"
    }
  }
}