Skip to main content
GET
/
tools
/
availables

Endpoint

GET https://gateway.orkeia.ai/tools/availables Authentication
Requires header authorization: <your_token>.

Headers

authorization: <your_token>

Example (cURL)

curl -X GET "https://gateway.orkeia.ai/tools/availables" \
  -H "authorization:  <your_token>"

Responses

Response - Success

response
{
  "status": "OK",
  "data": [
    {
      "key": "http_webhook",
      "name": "HTTP Webhook",
      "description": "Triggers HTTP requests to external services",
      "category": "integration"
    },
    {
      "key": "code_python",
      "name": "Code Execution (Python)",
      "description": "Executes Python scripts in a sandbox",
      "category": "runtime"
    }
  ]
}

500 — Server Error

{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}

400 — Client Error

{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}

Fields

FieldTypeDescription
keystringIdentifier of the tool type/model
namestringFriendly name
descriptionstringDescription of the type
categorystringCategory (e.g., integration, runtime)