Main library namespace for Jikan API wrapper.
Main library namespace for Jikan API wrapper.
(anime id)(anime id full?)Retrieves detailed information about a specific anime by its MyAnimeList ID. Returns nil if the resource is not found.
Args:
id: The MyAnimeList ID of the anime.full?: When true, fetches complete data including relations and external links.Maps to:
GET /anime/{id} (default)GET /anime/{id}/full (when full? is true)Retrieves detailed information about a specific anime by its MyAnimeList ID.
Returns nil if the resource is not found.
Args:
- `id`: The MyAnimeList ID of the anime.
- `full?`: When true, fetches complete data including relations and external links.
Maps to:
- `GET /anime/{id}` (default)
- `GET /anime/{id}/full` (when full? is true)(anime-characters id)Retrieves a list of characters and staff from a specific anime. Returns nil if the resource is not found.
Maps to: GET /anime/{id}/characters
Retrieves a list of characters and staff from a specific anime.
Returns nil if the resource is not found.
Maps to: `GET /anime/{id}/characters`(anime-episodes id)(anime-episodes id episode)Retrieves the episode list for a specific anime or details of a single episode. Returns nil if the resource is not found.
Args:
id: The MyAnimeList ID of the anime.episode: (Optional) The specific episode number/ID.Maps to:
GET /anime/{id}/episodes (when episode is nil)GET /anime/{id}/episodes/{episode_id} (when episode is provided)Retrieves the episode list for a specific anime or details of a single episode.
Returns nil if the resource is not found.
Args:
- `id`: The MyAnimeList ID of the anime.
- `episode`: (Optional) The specific episode number/ID.
Maps to:
- `GET /anime/{id}/episodes` (when episode is nil)
- `GET /anime/{id}/episodes/{episode_id}` (when episode is provided)(configure config)Globally configures the wrapper options.
Currently supports:
:base-url: The root URL for the Jikan API.Example: (configure {:base-url "https://my-proxy-server.com/v4"})
Globally configures the wrapper options.
Currently supports:
- `:base-url`: The root URL for the Jikan API.
Example:
(configure {:base-url "https://my-proxy-server.com/v4"})cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |