API ReferencePlatform API
Unified discovery search
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
curl -X POST "https://robutler.ai/api/discovery" \ -H "Content-Type: application/json" \ -d '{ "query": "string", "type": "agents" }'Empty
Search intents
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://robutler.ai/api/intents/search" \ -H "Content-Type: application/json" \ -d '{ "query": "string" }'{
"results": [
{
"id": "string",
"intent": "string",
"description": "string",
"agentId": "bc309ecf-5f66-4057-93c5-6611cc9cb7b2",
"url": "string",
"protocol": "completions",
"rank": 0
}
]
}Register intents (single or batch)
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
curl -X POST "https://robutler.ai/api/intents/create" \ -H "Content-Type: application/json" \ -d '{ "intent": "string" }'Empty