VersusGame Buddy List API

The buddy-list API from VersusGame — 4 operation(s) for buddy-list.

Operations 4

POST /v1/buddy-list/invitations Create a new buddy list invitation #
GET /v1/buddy-list/invitations/{shareCode} Get a buddy list invitation context object by share code #
GET /v1/buddy-list/invitations/{shareCode}/redirect Redirects to a buddy list invitation deep link URL for the given share code #
POST /v1/buddy-list/referrals Record a new buddy list referral on successful registration. #

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-buddy-list-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-buddy-list-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Versusgame Buddy List API
  version: '1.0'
  contact: {}
  description: 'Operations tagged buddy-list across 2 of this provider''s published API definitions: versusgame-buddy-list-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: buddy-list
paths:
  /v1/buddy-list/invitations:
    post:
      operationId: BuddyListController_createBuddyListInvitation
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateBuddyListInvitationRequestDTO'
      responses:
        '201':
          description: The created buddy list invitation context object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BuddyListInvitationEntity'
        '400':
          description: The request body is invalid
      summary: Create a new buddy list invitation
      tags:
      - buddy-list
    servers:
    - url: https://api.versusgame.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/buddy-list/invitations/{shareCode}:
    get:
      operationId: BuddyListController_getBuddyListInvitationByShareCode
      parameters:
      - name: shareCode
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: The found buddy list invitation context object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BuddyListInvitationEntity'
        '404':
          description: No invitation found for the given share code
      summary: Get a buddy list invitation context object by share code
      tags:
      - buddy-list
    servers:
    - url: https://api.versusgame.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/buddy-list/invitations/{shareCode}/redirect:
    get:
      operationId: BuddyListController_getBuddyListInvitationRedirectByShareCode
      parameters:
      - name: shareCode
        required: true
        in: path
        schema:
          type: string
      responses:
        '302':
          description: Redirects to the media partner article with the deep link params associated with the given shareCode
          headers:
            Location:
              description: The deep link URL
              schema:
                type: string
                example: https://example.com
        '404':
          description: No invitation found for the given share code
      summary: Redirects to a buddy list invitation deep link URL for the given share code
      tags:
      - buddy-list
    servers:
    - url: https://api.versusgame.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/buddy-list/referrals:
    post:
      description: Triggered when a new player registers after following a buddy list invitation link.
      operationId: BuddyListController_createBuddyListReferral
      parameters: []
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
      summary: Record a new buddy list referral on successful registration.
      tags:
      - buddy-list
    servers:
    - url: https://api.versusgame.com
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    BuddyListInvitationEntity:
      type: object
      properties:
        invitingPlayerIsRegistered:
          type: string
          enum:
          - 'true'
          - 'false'
        invitingPlayerGameResults:
          type: array
          items:
            $ref: '#/components/schemas/GameSetResult'
        entityType:
          type: object
          default: BuddyListInvitation
        invitingPlayerId:
          type: string
        invitingPlayerUsername:
          type: string
        invitingPlayerAnalyticsId:
          type: string
        shareCode:
          type: string
        distributorId:
          type: string
        deepLinkUrl:
          type: string
        gameSetId:
          type: string
        gameSetAttempt:
          type: number
          default: 1
        invitationDate:
          type: number
        buddyListId:
          type: string
      required:
      - invitingPlayerIsRegistered
      - invitingPlayerGameResults
      - entityType
      - invitingPlayerId
      - invitingPlayerUsername
      - invitingPlayerAnalyticsId
      - shareCode
      - distributorId
      - deepLinkUrl
      - gameSetId
      - invitationDate
      - buddyListId
    CreateBuddyListInvitationRequestDTO:
      type: object
      properties:
        gameSetAttempt:
          type: number
          default: 1
          description: Required for multiple attempts with This_That game sets
        invitingPlayerGameResults:
          type: array
          items:
            $ref: '#/components/schemas/GameSetResult'
        invitingPlayerId:
          type: string
        invitingPlayerUsername:
          type: string
        invitingPlayerAnalyticsId:
          type: string
        distributorId:
          type: string
        deepLinkUrl:
          type: string
        gameSetId:
          type: string
      required:
      - invitingPlayerGameResults
      - invitingPlayerAnalyticsId
      - distributorId
      - deepLinkUrl
      - gameSetId
    GameSetResult:
      type: object
      properties:
        gameId:
          type: string
        correctAnswer:
          type: boolean
      required:
      - gameId
  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-buddy-list-api-openapi.yml
- versusgame-openapi-original.json