Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique game identifier |
| game_title | string | Official game title |
| release_date | string | Release date |
| platform | integer | Platform ID |
| region_id | integer | Region identifier |
| country_id | integer | Country identifier |
| overview | string | Game description/overview |
| youtube | string | YouTube trailer URL |
| players | integer | Number of players supported |
| coop | string | Co-operative play supported |
| rating | string | Content rating (ESRB, PEGI, etc.) |
| alternates | array | Alternate game titles |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/thegamesdb/refs/heads/main/json-schema/thegamesdb-game-schema.json",
"title": "Game",
"description": "Video game details",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique game identifier",
"example": 1
},
"game_title": {
"type": "string",
"description": "Official game title",
"example": "Halo: Combat Evolved"
},
"release_date": {
"type": "string",
"description": "Release date",
"example": "2001-11-15"
},
"platform": {
"type": "integer",
"description": "Platform ID",
"example": 14
},
"region_id": {
"type": "integer",
"description": "Region identifier",
"nullable": true
},
"country_id": {
"type": "integer",
"description": "Country identifier",
"nullable": true
},
"overview": {
"type": "string",
"description": "Game description/overview",
"nullable": true
},
"youtube": {
"type": "string",
"description": "YouTube trailer URL",
"nullable": true
},
"players": {
"type": "integer",
"description": "Number of players supported",
"nullable": true
},
"coop": {
"type": "string",
"description": "Co-operative play supported",
"nullable": true
},
"rating": {
"type": "string",
"description": "Content rating (ESRB, PEGI, etc.)",
"nullable": true
},
"alternates": {
"type": "array",
"description": "Alternate game titles",
"nullable": true,
"items": {
"type": "string"
}
}
}
}
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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/thegamesdb-game"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.