VersusGame Creators API

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

Operations 5

PATCH /v1/admin/creators/{creatorId} #
GET /v1/admin/creators/{creatorId} #
GET /v1/admin/creators #
PATCH /v1/creators/creators #
GET /v1/creators/creators #

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-creators-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-creators-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Versusgame Creators API
  version: '1.0'
  contact: {}
  description: 'Operations tagged creators across 2 of this provider''s published API definitions: versusgame-creators-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: creators
paths:
  /v1/admin/creators/{creatorId}:
    patch:
      operationId: CreatorsAdminController_update
      parameters:
      - name: creatorId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCreatorDto'
      responses:
        '204':
          description: Updated Creator
      security:
      - access-token: []
      tags:
      - creators
    get:
      operationId: CreatorsAdminController_byId
      parameters:
      - name: creatorId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Get Creator
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Creator'
      security:
      - access-token: []
      tags:
      - creators
    servers:
    - url: https://api.versusgame.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/admin/creators:
    get:
      operationId: CreatorsAdminController_list
      parameters:
      - name: search
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SearchFindCreatorDto'
      - name: sort
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SortFindCreatorDto'
      - name: limit
        required: false
        in: query
        schema:
          type: number
      - name: offset
        required: false
        in: query
        schema:
          type: number
      responses:
        '200':
          description: List of Creator
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListCreator'
      security:
      - access-token: []
      tags:
      - creators
    servers:
    - url: https://api.versusgame.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/creators/creators:
    patch:
      operationId: CreatorsCreatorsController_update
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCreatorDto'
      responses:
        '204':
          description: Updated Creator
      security:
      - access-token: []
      tags:
      - creators
    get:
      operationId: CreatorsCreatorsController_list
      parameters:
      - name: search
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SearchFindCreatorDto'
      - name: sort
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SortFindCreatorDto'
      - name: limit
        required: false
        in: query
        schema:
          type: number
      - name: offset
        required: false
        in: query
        schema:
          type: number
      responses:
        '200':
          description: List of Creator
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListCreator'
      security:
      - access-token: []
      tags:
      - creators
    servers:
    - url: https://api.versusgame.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    SortMode:
      type: string
      enum:
      - asc
      - desc
    SortFindCreatorDto:
      type: object
      properties:
        partnerName:
          allOf:
          - $ref: '#/components/schemas/SortMode'
        userName:
          allOf:
          - $ref: '#/components/schemas/SortMode'
    SearchFindCreatorDto:
      type: object
      properties:
        creatorIds:
          type: array
          items:
            type: string
        partnerName:
          type: string
        userName:
          type: string
    UpdateCreatorDto:
      type: object
      properties:
        partnerName:
          type: string
        avatarAssetId:
          type: string
        profileColor:
          type: string
        userName:
          type: string
    ListCreator:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Creator'
        total:
          type: number
      required:
      - items
      - total
    Creator:
      type: object
      properties:
        avatar:
          type: string
        id:
          type: string
        partnerName:
          type: string
        avatarAssetId:
          type: string
        profileColor:
          type: string
        userName:
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
      required:
      - avatar
      - id
      - partnerName
      - avatarAssetId
      - profileColor
      - userName
      - createdAt
      - updatedAt
  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-creators-api-openapi.yml
- versusgame-openapi-original.json