Busabase
OpenAPI リファレンス

Guides

The operating manual, in the same words the MCP server publishes. Read `workspace` before proposing changes and `airapp` before writing any AirApp file — the conventions a workspace expects are not expressible in a schema.

GET
/api/v1/guides

Response Body

application/json

curl -X GET "https://example.com/api/v1/guides"
[  {    "topic": "string",    "title": "string",    "kind": "reference",    "summary": "string"  }]
GET
/api/v1/guides/{topic}

Path Parameters

topic*string

Guide topic. Call GET /guides for the ones served here.

Length1 <= length

Response Body

application/json

curl -X GET "https://example.com/api/v1/guides/string"
{  "topic": "string",  "title": "string",  "kind": "reference",  "content": "string",  "otherTopics": [    "string"  ]}