Kongregate Items.json API

The Items.json API from Kongregate — 1 operation(s) for items.json.

Operations 1

GET /items.json Items - 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/kongregate-items-json-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

kongregate-items-json-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Authenticate.json Items.json API
  version: '2.0'
servers:
- url: https://api.kongregate.com/api
security:
- {}
tags:
- name: Items.json
paths:
  /items.json:
    get:
      summary: Items - List
      description: Retrieves static item definitions from the server
      operationId: server-api-item-list
      parameters:
      - name: api_key
        in: query
        description: Your private API key
        required: true
        schema:
          type: string
      - name: tags
        in: query
        description: Comma-delimited list of tags to filter by
        schema:
          type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Retrieve All Items:
                  value: "{\n  \"success\": true,\n  \"items\": [\n    {\n      \"id\": 1,\n      \"identifier\": \"sharp-sword\",\n      \"name\": \"Sharp Sword\",\n      \"description\": \"A sharp sword\",\n      \"price\": 10,\n      \"tags\": [\n        \"sword\",\n        \"awesome\"\n      ]\n    },\n    {\n      \"id\": 2,\n      \"identifier\": \"dull-sword\",\n      \"name\": \"Dull Sword\",\n      \"description\": \"A dull sword\",\n      \"price\": 1,\n      \"tags\": [\n        \"sword\"\n      ]\n    },\n    {\n      \"id\": 3,\n      \"identifier\": \"axe\",\n      \"name\": \"Axe\",\n      \"description\": \"An Axe\",\n      \"price\": 10,\n      \"tags\": [\n        \"axe\"\n      ]\n    }\n  ]\n}"
                Retrieve Items With Tags:
                  value: "{\n  \"success\": true,\n  \"items\": [\n    {\n      \"id\": 1,\n      \"identifier\": \"sharp-sword\",\n      \"name\": \"Sharp Sword\",\n      \"description\": \"A sharp sword\",\n      \"price\": 10,\n      \"tags\": [\n        \"sword\",\n        \"awesome\"\n      ]\n    }\n  ]\n}"
              schema:
                oneOf:
                - title: Retrieve All Items
                  type: object
                  properties:
                    success:
                      type: boolean
                      example: true
                      default: true
                    items:
                      type: array
                      items:
                        type: object
                        properties:
                          id:
                            type: integer
                            example: 1
                            default: 0
                          identifier:
                            type: string
                            example: sharp-sword
                          name:
                            type: string
                            example: Sharp Sword
                          description:
                            type: string
                            example: A sharp sword
                          price:
                            type: integer
                            example: 10
                            default: 0
                          tags:
                            type: array
                            items:
                              type: string
                              example: sword
                - title: Retrieve Items With Tags
                  type: object
                  properties:
                    success:
                      type: boolean
                      example: true
                      default: true
                    items:
                      type: array
                      items:
                        type: object
                        properties:
                          id:
                            type: integer
                            example: 1
                            default: 0
                          identifier:
                            type: string
                            example: sharp-sword
                          name:
                            type: string
                            example: Sharp Sword
                          description:
                            type: string
                            example: A sharp sword
                          price:
                            type: integer
                            example: 10
                            default: 0
                          tags:
                            type: array
                            items:
                              type: string
                              example: sword
      deprecated: false
      x-readme:
        code-samples:
        - language: curl
          code: "curl -XGET -d '{\n  \"api_key\": \"GAMEAPIKEY\"\n}' 'https://api.kongregate.com/api/items.json'"
          name: Retrieve All Items
        - language: curl
          code: "curl -XGET -d '{\n  \"api_key\": \"GAMEAPIKEY\",\n  \"tags\": \"sword,awesome\"\n}' 'https://api.kongregate.com/api/items.json'"
          name: Retrieve Items With Tags
        samples-languages:
        - curl
      tags:
      - Items.json
x-readme:
  headers: []
  explorer-enabled: true
  proxy-enabled: true
x-readme-fauxas: true