VersusGame Products API

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

Operations 5

GET /v1/products #
POST /v1/admin/products #
GET /v1/admin/products #
PATCH /v1/admin/products/{productId} #
GET /v1/admin/products/{productId} #

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-products-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-products-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Versusgame Products API
  version: '1.0'
  contact: {}
  description: 'Operations tagged products across 2 of this provider''s published API definitions: versusgame-openapi-original.json, versusgame-products-api-openapi.yml. 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: products
paths:
  /v1/products:
    get:
      operationId: ProductsController_list
      parameters:
      - name: search
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SearchFindProductDto2'
      - name: sort
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SortFindProductDto2'
      - name: limit
        required: false
        in: query
        schema:
          type: number
      - name: offset
        required: false
        in: query
        schema:
          type: number
      responses:
        '200':
          description: List of Products
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListProduct'
      tags:
      - products
  /v1/admin/products:
    post:
      operationId: ProductsAdminController_create
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProductDto'
      responses:
        '201':
          description: New Product
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductEntity'
      security:
      - access-token: []
      tags:
      - products
    get:
      operationId: ProductsAdminController_list
      parameters:
      - name: search
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SearchFindProductDto2'
      - name: sort
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SortFindProductDto2'
      - name: limit
        required: false
        in: query
        schema:
          type: number
      - name: offset
        required: false
        in: query
        schema:
          type: number
      responses:
        '200':
          description: List of Products
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListProduct'
      security:
      - access-token: []
      tags:
      - products
  /v1/admin/products/{productId}:
    patch:
      operationId: ProductsAdminController_update
      parameters:
      - name: productId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateProductDto'
      responses:
        '204':
          description: Updated Product
      security:
      - access-token: []
      tags:
      - products
    get:
      operationId: ProductsAdminController_byId
      parameters:
      - name: productId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Get Product
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductEntity'
      security:
      - access-token: []
      tags:
      - products
components:
  schemas:
    SearchFindProductDto2:
      type: object
      properties:
        search:
          $ref: '#/components/schemas/SearchFindProductDto'
    UpdateProductDto:
      type: object
      properties:
        productName:
          type: string
        productDescription:
          type: string
        whiteTickets:
          type: number
        whiteTicketImage:
          type: string
        blackTickets:
          type: number
        blackTicketImage:
          type: string
        amount:
          type: number
        mostPopular:
          type: boolean
        language:
          type: string
          enum:
          - en-us
          - es-mx
    ListProduct:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/ProductEntity'
        total:
          type: number
      required:
      - items
      - total
    SortFindProductDto:
      type: object
      properties:
        amount:
          allOf:
          - $ref: '#/components/schemas/SortMode'
        productName:
          allOf:
          - $ref: '#/components/schemas/SortMode'
    SortMode:
      type: string
      enum:
      - asc
      - desc
    SortFindProductDto2:
      type: object
      properties:
        sort:
          $ref: '#/components/schemas/SortFindProductDto'
    SearchFindProductDto:
      type: object
      properties:
        productName:
          type: string
    Language:
      type: string
      enum:
      - en-us
      - es-mx
    ProductEntity:
      type: object
      properties:
        language:
          allOf:
          - $ref: '#/components/schemas/Language'
        id:
          type: string
        productName:
          type: string
        productDescription:
          type: string
        whiteTickets:
          type: number
        blackTickets:
          type: number
        amount:
          type: number
        mostPopular:
          type: boolean
        createdAt:
          format: date-time
          type: string
        deletedAt:
          format: date-time
          type: string
      required:
      - language
      - id
      - productName
      - productDescription
      - whiteTickets
      - blackTickets
      - amount
      - mostPopular
      - createdAt
      - deletedAt
    CreateProductDto:
      type: object
      properties:
        productName:
          type: string
        productDescription:
          type: string
        whiteTickets:
          type: number
        blackTickets:
          type: number
        amount:
          type: number
        mostPopular:
          type: boolean
        language:
          type: string
          enum:
          - en-us
          - es-mx
      required:
      - productName
      - productDescription
      - whiteTickets
      - blackTickets
      - amount
      - mostPopular
      - language
  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-openapi-original.json
- versusgame-products-api-openapi.yml