Book

A book published in the A Song of Ice and Fire series.

Game of ThronesASOIAFA Song of Ice and FireBooksCharactersHousesFantasyEntertainmentOpenAPIFree API

Properties

Name Type Description
url string The canonical URL of this book resource.
name string The name of the book.
isbn string ISBN-13 of the book.
authors array List of authors who wrote this book.
numberOfPages integer Total number of pages in the book.
publisher string Publisher of the book.
country string Country of origin for the original publication.
mediaType string Media type of the book.
released string Release date and time of the book (ISO 8601).
characters array URLs of characters who appear in this book.
povCharacters array URLs of characters with point-of-view chapters in this book.
View JSON Schema on GitHub

JSON Schema

book.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/game-of-thrones/main/json-schema/book.json",
  "title": "Book",
  "description": "A book published in the A Song of Ice and Fire series.",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The canonical URL of this book resource."
    },
    "name": {
      "type": "string",
      "description": "The name of the book.",
      "examples": ["A Game of Thrones"]
    },
    "isbn": {
      "type": "string",
      "description": "ISBN-13 of the book.",
      "pattern": "^978-[0-9-]+$",
      "examples": ["978-0553103540"]
    },
    "authors": {
      "type": "array",
      "description": "List of authors who wrote this book.",
      "items": {
        "type": "string"
      },
      "examples": [["George R. R. Martin"]]
    },
    "numberOfPages": {
      "type": "integer",
      "minimum": 1,
      "description": "Total number of pages in the book.",
      "examples": [694]
    },
    "publisher": {
      "type": "string",
      "description": "Publisher of the book.",
      "examples": ["Bantam Books"]
    },
    "country": {
      "type": "string",
      "description": "Country of origin for the original publication.",
      "examples": ["United States"]
    },
    "mediaType": {
      "type": "string",
      "description": "Media type of the book.",
      "examples": ["Hardcover", "Paperback"]
    },
    "released": {
      "type": "string",
      "format": "date-time",
      "description": "Release date and time of the book (ISO 8601).",
      "examples": ["1996-08-01T00:00:00"]
    },
    "characters": {
      "type": "array",
      "description": "URLs of characters who appear in this book.",
      "items": {
        "type": "string",
        "format": "uri"
      }
    },
    "povCharacters": {
      "type": "array",
      "description": "URLs of characters with point-of-view chapters in this book.",
      "items": {
        "type": "string",
        "format": "uri"
      }
    }
  },
  "required": ["url", "name", "isbn", "authors", "numberOfPages", "publisher", "country", "mediaType", "released", "characters", "povCharacters"]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/book"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.