Liking cljdoc? Tell your friends :D

com.adaiasmagdiel.jikan-clj

Main library namespace for Jikan API wrapper.

Main library namespace for Jikan API wrapper.
raw docstring

animeclj

(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)
sourceraw docstring

anime-charactersclj

(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`
sourceraw docstring

anime-episodesclj

(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)
sourceraw docstring

configureclj

(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"})
sourceraw docstring

cljdoc builds & hosts documentation for Clojure/Script libraries

Keyboard shortcuts
Ctrl+kJump to recent docs
Move to previous article
Move to next article
Ctrl+/Jump to the search field
× close