Skip to main content
GET
/
agentspec
/
agents
List available agents on the runtime
curl --request GET \
  --url http://localhost:5173/api/flowdrop/agentspec/agents \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "description": "<string>",
    "inputs": [
      {
        "title": "user_query",
        "type": "string",
        "description": "<string>",
        "default": "<unknown>",
        "enum": [
          "<unknown>"
        ],
        "items": "<unknown>",
        "properties": {},
        "required": [
          "<string>"
        ]
      }
    ],
    "outputs": [
      {
        "title": "user_query",
        "type": "string",
        "description": "<string>",
        "default": "<unknown>",
        "enum": [
          "<unknown>"
        ],
        "items": "<unknown>",
        "properties": {},
        "required": [
          "<string>"
        ]
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

JWT token for authentication

Response

List of available agents

name
string

Agent name

description
string

Agent description

inputs
object[]
outputs
object[]