Giant Bomb Companies API

Access to company data

Operations 2

GET /companies/ Get companies #
GET /company/{guid}/ Get single company #

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/giantbomb-companies-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

giantbomb-companies-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Giant Bomb Characters Companies API
  description: The Giant Bomb API provides access to video game data including games, platforms, characters, companies, franchises, reviews, and videos. Giant Bomb is a video game website and wiki that covers video game news, reviews, and features.
  version: 1.0.0
  contact:
    name: Giant Bomb API Support
    url: https://www.giantbomb.com/api/
servers:
- url: https://www.giantbomb.com/api
  description: Giant Bomb API Production Server
security:
- apiKeyQuery: []
tags:
- name: Companies
  description: Access to company data
paths:
  /companies/:
    get:
      summary: Get companies
      description: Returns a list of companies
      operationId: getCompanies
      tags:
      - Companies
      parameters:
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/field_list'
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/offset'
      - $ref: '#/components/parameters/sort'
      - $ref: '#/components/parameters/filter'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
  /company/{guid}/:
    get:
      summary: Get single company
      description: Returns a single company
      operationId: getCompany
      tags:
      - Companies
      parameters:
      - name: guid
        in: path
        required: true
        description: Company GUID
        schema:
          type: string
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/field_list'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
components:
  parameters:
    field_list:
      name: field_list
      in: query
      description: Comma-separated list of fields to include in response
      schema:
        type: string
    filter:
      name: filter
      in: query
      description: Filter results (e.g., field:value)
      schema:
        type: string
    limit:
      name: limit
      in: query
      description: Number of results to return (max 100)
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 100
    sort:
      name: sort
      in: query
      description: Field to sort by (prefix with - for descending)
      schema:
        type: string
    format:
      name: format
      in: query
      description: Response format
      schema:
        type: string
        enum:
        - json
        - xml
        default: json
    offset:
      name: offset
      in: query
      description: Offset into result set
      schema:
        type: integer
        minimum: 0
        default: 0
  schemas:
    ApiResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message if request failed
        limit:
          type: integer
          description: Number of results per page
        offset:
          type: integer
          description: Offset into result set
        number_of_page_results:
          type: integer
          description: Number of results on current page
        number_of_total_results:
          type: integer
          description: Total number of matching results
        status_code:
          type: integer
          description: Status code (1 = success)
        results:
          description: Array of results
          oneOf:
          - type: array
          - type: object
  securitySchemes:
    apiKeyQuery:
      type: apiKey
      name: api_key
      in: query
      description: API key for authentication. Register at https://www.giantbomb.com/api/