AniList · JSON Structure

Anilist Pageinfo Structure

PageInfo schema from AniList GraphQL API v2

Type: object Properties: 5
AnimeMangaEntertainmentMediaSocialDatabaseGraphQLOAuth2Public APIs

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

Properties

total perPage currentPage lastPage hasNextPage

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

JSON Structure

anilist-pageinfo-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-pageinfo-structure.json",
  "name": "PageInfo",
  "description": "PageInfo schema from AniList GraphQL API v2",
  "type": "object",
  "properties": {
    "total": {
      "type": "int32",
      "description": "The total number of items. Note: This value is not guaranteed to be accurate, do not rely on this for logic"
    },
    "perPage": {
      "type": "int32",
      "description": "The count on a page"
    },
    "currentPage": {
      "type": "int32",
      "description": "The current page"
    },
    "lastPage": {
      "type": "int32",
      "description": "The last page"
    },
    "hasNextPage": {
      "type": "boolean",
      "description": "If there is another page"
    }
  }
}