FlowDrop Docs
API referenceAgent spec

List available agents on the runtime

Retrieve a list of agents registered on the Agent Spec runtime. These agents can be referenced by `agent_node` components.

GET
/agentspec/agents

Authorization

AuthorizationBearer <token>

JWT token for authentication

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/agentspec/agents"
[  {    "name": "string",    "description": "string",    "inputs": [      {        "title": "user_query",        "type": "string",        "description": "string",        "default": null,        "enum": [          null        ],        "items": {},        "properties": {          "property1": {},          "property2": {}        },        "required": [          "string"        ]      }    ],    "outputs": [      {        "title": "user_query",        "type": "string",        "description": "string",        "default": null,        "enum": [          null        ],        "items": {},        "properties": {          "property1": {},          "property2": {}        },        "required": [          "string"        ]      }    ]  }]