VersusGame Partner Domain API

The partner-domain API from VersusGame — 3 operation(s) for partner-domain.

Operations 5

POST /v1/partner-domain #
GET /v1/partner-domain #
PUT /v1/partner-domain/{id} #
DELETE /v1/partner-domain/{id} #
GET /v1/partner-domain/{domain} #

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-partner-domain-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-partner-domain-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Versusgame Partner Domain API
  version: '1.0'
  contact: {}
  description: 'Operations tagged partner-domain across 2 of this provider''s published API definitions: versusgame-openapi-original.json, versusgame-partner-domain-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: partner-domain
paths:
  /v1/partner-domain:
    post:
      operationId: PartnerDomainController_create
      parameters:
      - name: x-user-id
        in: header
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePartnerDomainDto'
      responses:
        '201':
          description: Creates a new partner Domain
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerDomains'
      security:
      - access-token: []
      tags:
      - partner-domain
    get:
      operationId: PartnerDomainController_query
      parameters:
      - name: search
        required: false
        in: query
        schema:
          $ref: '#/components/schemas/SearchDto'
      - name: limit
        required: false
        in: query
        schema:
          type: number
      - name: offset
        required: false
        in: query
        schema:
          type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListPartnerDomains'
      security:
      - access-token: []
      - access-token: []
      tags:
      - partner-domain
  /v1/partner-domain/{id}:
    put:
      operationId: PartnerDomainController_update
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdatePartnerDomainDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerDomains'
      security:
      - access-token: []
      tags:
      - partner-domain
    delete:
      operationId: PartnerDomainController_delete
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '204':
          description: ''
      security:
      - access-token: []
      tags:
      - partner-domain
  /v1/partner-domain/{domain}:
    get:
      operationId: PartnerDomainController_byDomain
      parameters:
      - name: domain
        required: true
        in: path
        schema:
          type: string
      responses:
        '201':
          description: Gets a partner Domain by domain
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerDomains'
      security:
      - access-token: []
      - access-token: []
      tags:
      - partner-domain
components:
  schemas:
    SearchDto:
      type: object
      properties:
        creatorId:
          type: string
        domain:
          type: string
    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
    PartnerDomains:
      type: object
      properties:
        id:
          type: string
        domain:
          type: string
        creatorId:
          type: string
        creator:
          $ref: '#/components/schemas/Creator'
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        articleUrlRules:
          type: array
          items:
            type: string
        indexPagesRules:
          type: array
          items:
            type: string
        enableAutogame:
          type: boolean
      required:
      - id
      - domain
      - creatorId
      - creator
      - createdAt
      - updatedAt
      - articleUrlRules
      - indexPagesRules
      - enableAutogame
    ListPartnerDomains:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/PartnerDomains'
        total:
          type: number
      required:
      - items
      - total
    CreatePartnerDomainDto:
      type: object
      properties:
        domain:
          type: string
        articleUrlRules:
          type: array
          items:
            type: string
            pattern: /a-z|N|\*|\//
        indexPagesRules:
          type: array
          items:
            type: string
            pattern: /a-z|N|\*|\//
        enableAutogame:
          type: boolean
      required:
      - domain
      - articleUrlRules
      - indexPagesRules
      - enableAutogame
    UpdatePartnerDomainDto:
      type: object
      properties:
        articleUrlRules:
          type: array
          items:
            type: string
            pattern: /a-z|N|\*|\//
        indexPagesRules:
          type: array
          items:
            type: string
            pattern: /a-z|N|\*|\//
        enableAutogame:
          type: boolean
      required:
      - articleUrlRules
      - indexPagesRules
      - enableAutogame
  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-partner-domain-api-openapi.yml