TheGamesDB Developers API

The Developers API from TheGamesDB — 1 operation(s) for developers.

Operations 1

GET /v1/Developers Fetch Developers list #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/thegamesdb-developers-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

thegamesdb-developers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API Documentation
  version: 2.0.0
  title: TheGamesDB Developers API
  license:
    name: GNU General Public License v3.0
    url: https://github.com/TheGamesDB/TheGamesDBv2/blob/master/LICENSE
servers:
- url: https://api.thegamesdb.net/
tags:
- name: Developers
paths:
  /v1/Developers:
    get:
      tags:
      - Developers
      operationId: Developers
      summary: Fetch Developers list
      parameters:
      - in: query
        name: apikey
        description: (Required)
        required: true
        schema:
          type: string
      responses:
        200:
          description: result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Developers'
        400:
          description: bad input parameter
        403:
          description: bad API key or hit rate-limit cap
components:
  schemas:
    Developers:
      allOf:
      - $ref: '#/components/schemas/BaseApiResponse'
      - type: object
        required:
        - data
        properties:
          data:
            type: object
            required:
            - count
            - developers
            properties:
              count:
                type: integer
                minimum: 0
              developers:
                type: object
                additionalProperties:
                  $ref: '#/components/schemas/Developer'
    Developer:
      type: object
      required:
      - id
      - name
      properties:
        id:
          type: integer
          minimum: 0
        name:
          type: string
      example:
        id: 202
        name: Acclaim Studios Manchester
    BaseApiResponse:
      type: object
      required:
      - code
      - status
      - remaining_monthly_allowance
      - extra_allowance
      properties:
        code:
          type: integer
          minimum: 0
        status:
          type: string
        remaining_monthly_allowance:
          type: integer
          minimum: 0
        extra_allowance:
          type: integer
          minimum: 0
      example:
        code: 200
        status: Success
        remaining_monthly_allowance: 257
        extra_allowance: 0