Get event names

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api-docs.kitsu.cloud/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Kitsu API MCP server": {
    "url": "https://api-docs.kitsu.cloud/mcp"
  }
}

Close
GET /data/events/names

Retrieve the distinct event names present in the log. It is meant to build the object and action filters of the log screen. The list is not scoped to the caller's productions: it exposes the event vocabulary, not any production data.

Responses

  • 200 application/json

    Sorted list of the event names in use

GET /data/events/names
curl \
 --request GET 'http://api.example.com/data/events/names' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  "task:update"
]