AniList · Schema

GraphQLResponse

GraphQLResponse schema from AniList GraphQL API v2

AnimeMangaEntertainmentMediaSocialDatabaseGraphQLOAuth2Public APIs

Properties

Name Type Description
data object Selection result tree shaped like the requested query
errors array Array of GraphQL errors when the request was not fully successful
extensions object
View JSON Schema on GitHub

JSON Schema

anilist-graphqlresponse-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-graphqlresponse-schema.json",
  "title": "GraphQLResponse",
  "description": "GraphQLResponse schema from AniList GraphQL API v2",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "nullable": true,
      "additionalProperties": true,
      "description": "Selection result tree shaped like the requested query"
    },
    "errors": {
      "type": "array",
      "description": "Array of GraphQL errors when the request was not fully successful",
      "items": {
        "$ref": "#/components/schemas/GraphQLError"
      }
    },
    "extensions": {
      "type": "object",
      "additionalProperties": true
    }
  }
}