AniList · JSON Structure

Anilist Graphqlresponse Structure

GraphQLResponse schema from AniList GraphQL API v2

Type: object Properties: 3
AnimeMangaEntertainmentMediaSocialDatabaseGraphQLOAuth2Public APIs

GraphQLResponse is a JSON Structure definition published by AniList, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

data errors extensions

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

anilist-graphqlresponse-structure.json Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/anilist/refs/heads/main/json-structure/anilist-graphqlresponse-structure.json",
  "name": "GraphQLResponse",
  "description": "GraphQLResponse schema from AniList GraphQL API v2",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "description": "Selection result tree shaped like the requested query",
      "additionalProperties": true,
      "nullable": true
    },
    "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
    }
  }
}