VersusGame Categories API

The categories API from VersusGame — 3 operation(s) for categories.

Operations 6

GET /v1/categories #
POST /v1/admin/categories #
GET /v1/admin/categories #
PATCH /v1/admin/categories/{categoryId} #
GET /v1/admin/categories/{categoryId} #
DELETE /v1/admin/categories/{categoryId} #

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/versusgame-categories-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

versusgame-categories-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Versusgame Categories API
  version: '1.0'
  contact: {}
  description: 'Operations tagged categories across 2 of this provider''s published API definitions: versusgame-categories-api-openapi.yml, versusgame-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.versusgame.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: categories
paths:
  /v1/categories:
    get:
      operationId: CategoriesController_list
      parameters:
      - name: search
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SearchFindCategoryDto'
      - name: sort
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SortFindCategoryDto'
      - name: limit
        required: false
        in: query
        schema:
          type: number
      - name: offset
        required: false
        in: query
        schema:
          type: number
      responses:
        '200':
          description: List of Categories
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListCategory'
      tags:
      - categories
    servers:
    - url: https://api.versusgame.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/admin/categories:
    post:
      operationId: CategoriesAdminController_create
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCategoryDto'
      responses:
        '201':
          description: New Category
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Category'
      security:
      - access-token: []
      tags:
      - categories
    get:
      operationId: CategoriesAdminController_list
      parameters:
      - name: search
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SearchFindCategoryDto'
      - name: sort
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SortFindCategoryDto'
      - name: limit
        required: false
        in: query
        schema:
          type: number
      - name: offset
        required: false
        in: query
        schema:
          type: number
      responses:
        '200':
          description: List of Categories
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListCategory'
      security:
      - access-token: []
      tags:
      - categories
    servers:
    - url: https://api.versusgame.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/admin/categories/{categoryId}:
    patch:
      operationId: CategoriesAdminController_update
      parameters:
      - name: categoryId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCategoryDto'
      responses:
        '204':
          description: Updated Category
      security:
      - access-token: []
      tags:
      - categories
    get:
      operationId: CategoriesAdminController_byId
      parameters:
      - name: categoryId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Get Category
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Category'
      security:
      - access-token: []
      tags:
      - categories
    delete:
      operationId: CategoriesAdminController_delete
      parameters:
      - name: categoryId
        required: true
        in: path
        schema:
          type: string
      responses:
        '204':
          description: Delete Category
      security:
      - access-token: []
      tags:
      - categories
    servers:
    - url: https://api.versusgame.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    CreateCategoryDto:
      type: object
      properties:
        language:
          allOf:
          - $ref: '#/components/schemas/Language'
        categoryName:
          type: string
        sticker:
          type: string
        icon:
          type: string
      required:
      - language
      - categoryName
    SortMode:
      type: string
      enum:
      - asc
      - desc
    SearchFindCategoryDto:
      type: object
      properties:
        categoryName:
          type: string
    Category:
      type: object
      properties:
        language:
          allOf:
          - $ref: '#/components/schemas/Language'
        id:
          type: string
        categoryName:
          type: string
        createdAt:
          type: string
        updatedAt:
          type: string
        deletedAt:
          type: string
        sticker:
          type: string
        icon:
          type: string
      required:
      - language
      - id
      - categoryName
      - createdAt
      - updatedAt
      - deletedAt
    Language:
      type: string
      enum:
      - en-us
      - es-mx
    ListCategory:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Category'
        total:
          type: number
      required:
      - items
      - total
    UpdateCategoryDto:
      type: object
      properties:
        language:
          allOf:
          - $ref: '#/components/schemas/Language'
        categoryName:
          type: string
        sticker:
          type: string
        icon:
          type: string
    SortFindCategoryDto:
      type: object
      properties:
        categoryName:
          allOf:
          - $ref: '#/components/schemas/SortMode'
        createdAt:
          allOf:
          - $ref: '#/components/schemas/SortMode'
        updatedAt:
          allOf:
          - $ref: '#/components/schemas/SortMode'
  securitySchemes:
    access-token:
      scheme: bearer
      bearerFormat: JWT
      description: Enter the bearer token below (do not include 'Bearer')
      type: http
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key For External calls
x-refined-from:
- versusgame-categories-api-openapi.yml
- versusgame-openapi-original.json