Check sequence subscription

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/user/sequences/{sequence_id}/task-types/{task_type_id}/subscribed

Check if the current user has subscribed to a specific sequence and task type combination. Returns true if subscribed.

Path parameters

  • sequence_id string(uuid) Required

    Sequence unique identifier

  • task_type_id string(uuid) Required

    Task type unique identifier

Responses

  • 200 application/json

    Subscription status for the sequence and task type

GET /data/user/sequences/{sequence_id}/task-types/{task_type_id}/subscribed
curl \
 --request GET 'http://api.example.com/data/user/sequences/a24a6ea4-ce75-4665-a070-57453082c25/task-types/b35b7fb5-df86-5776-b181-68564193d36/subscribed' \
 --header "Authorization: $API_KEY"
Response examples (200)
true