AniList · Schema

MediaCoverImage

MediaCoverImage schema from AniList GraphQL API v2

AnimeMangaEntertainmentMediaSocialDatabaseGraphQLOAuth2Public APIs

Properties

Name Type Description
extraLarge string The cover image url of the media at its largest size. If this size isn't available, large will be provided instead.
large string The cover image url of the media at a large size
medium string The cover image url of the media at medium size
color string Average #hex color of cover image
View JSON Schema on GitHub

JSON Schema

anilist-mediacoverimage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/anilist/refs/heads/main/json-schema/anilist-mediacoverimage-schema.json",
  "title": "MediaCoverImage",
  "description": "MediaCoverImage schema from AniList GraphQL API v2",
  "type": "object",
  "properties": {
    "extraLarge": {
      "type": "string",
      "description": "The cover image url of the media at its largest size. If this size isn't available, large will be provided instead."
    },
    "large": {
      "type": "string",
      "description": "The cover image url of the media at a large size"
    },
    "medium": {
      "type": "string",
      "description": "The cover image url of the media at medium size"
    },
    "color": {
      "type": "string",
      "description": "Average #hex color of cover image"
    }
  }
}