VersusGame Cuts API
The cuts API from VersusGame — 5 operation(s) for cuts.
The cuts API from VersusGame — 5 operation(s) for cuts.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/versusgame-cuts-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Versusgame Cuts API
version: '1.0'
contact: {}
description: 'Operations tagged cuts across 2 of this provider''s published API definitions: versusgame-cuts-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: cuts
paths:
/v1/admin/cuts:
get:
operationId: CutsAdminController_getGlobalCuts
parameters: []
responses:
'200':
description: Global cuts configuration
content:
application/json:
schema:
$ref: '#/components/schemas/GlobalCutsEntity'
security:
- access-token: []
tags:
- cuts
patch:
operationId: CutsAdminController_updateGlobalCuts
parameters: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateGlobalCutsDto'
responses:
'200':
description: Updated global cuts configuration
security:
- access-token: []
tags:
- cuts
servers:
- url: https://api.versusgame.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
/v1/admin/cuts/history:
get:
operationId: CutsAdminController_getGlobalCutsHistory
parameters: []
responses:
'200':
description: Global cuts history
content:
application/json:
schema:
$ref: '#/components/schemas/GlobalCutsHistoryListEntity'
security:
- access-token: []
tags:
- cuts
servers:
- url: https://api.versusgame.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
/v1/admin/cuts/{userId}:
get:
operationId: CutsAdminController_getUserCuts
parameters:
- name: userId
required: true
in: path
schema:
type: string
responses:
'200':
description: Get cuts configuration for a user
content:
application/json:
schema:
$ref: '#/components/schemas/UserCutsEntity'
security:
- access-token: []
- access-token: []
tags:
- cuts
patch:
operationId: CutsAdminController_updateUserCuts
parameters:
- name: userId
required: true
in: path
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateUserCutsDto'
responses:
'200':
description: Updated cuts configuration for a user
security:
- access-token: []
- access-token: []
tags:
- cuts
servers:
- url: https://api.versusgame.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
/v1/admin/cuts/{userId}/distributor:
patch:
operationId: CutsAdminController_updateUserDistributionCuts
parameters:
- name: userId
required: true
in: path
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateUserDistributionCutsDto'
responses:
'200':
description: Updated distribution cuts configuration for a user
security:
- access-token: []
- access-token: []
tags:
- cuts
servers:
- url: https://api.versusgame.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
/v1/admin/cuts/{userId}/history:
get:
operationId: CutsAdminController_getUserCutsHistory
parameters:
- name: userId
required: true
in: path
schema:
type: string
responses:
'200':
description: User cuts history
content:
application/json:
schema:
$ref: '#/components/schemas/UserCutsHistoryListEntity'
security:
- access-token: []
tags:
- cuts
servers:
- url: https://api.versusgame.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
schemas:
UserCutsHistoryEntity:
type: object
properties:
userId:
type: string
updatedBy:
type: string
after:
$ref: '#/components/schemas/UserCutsEntity'
createdAt:
type: number
required:
- userId
- updatedBy
- after
- createdAt
GlobalCutsEntity:
type: object
properties:
version:
type: number
transactionFeePercentage:
type: number
rakePercentage:
type: number
defaultDistributorCutPercentage:
type: number
defaultCreatorCutPercentage:
type: number
updatedAt:
type: string
required:
- transactionFeePercentage
- rakePercentage
- defaultDistributorCutPercentage
- defaultCreatorCutPercentage
- updatedAt
UserCutsEntity:
type: object
properties:
version:
type: number
userId:
type: string
distributorCutPercentage:
type: number
creatorCutPercentage:
type: number
parents:
type: array
items:
$ref: '#/components/schemas/ParentCut'
required:
- version
- userId
- distributorCutPercentage
- creatorCutPercentage
- parents
GlobalCutsHistoryEntity:
type: object
properties:
updatedBy:
type: string
after:
$ref: '#/components/schemas/GlobalCutsEntity'
required:
- updatedBy
- after
UserCutsHistoryListEntity:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/UserCutsHistoryEntity'
next:
type: string
required:
- items
- next
UpdateGlobalCutsDto:
type: object
properties:
transactionFeePercentage:
type: number
minimum: 0
maximum: 100
rakePercentage:
type: number
minimum: 0
maximum: 100
defaultDistributorCutPercentage:
type: number
minimum: 0
maximum: 100
defaultCreatorCutPercentage:
type: number
minimum: 0
maximum: 100
version:
type: number
minimum: 0
required:
- transactionFeePercentage
- rakePercentage
- defaultDistributorCutPercentage
- defaultCreatorCutPercentage
- version
UpdateUserCutsDto:
type: object
properties:
userId:
type: string
creatorCutPercentage:
type: number
minimum: 0
maximum: 50
parents:
type: array
items:
$ref: '#/components/schemas/ValidParentCut'
version:
type: number
minimum: 0
required:
- userId
- creatorCutPercentage
- parents
- version
ValidParentCut:
type: object
properties:
userId:
type: string
cutPercentage:
type: number
type:
type: string
enum:
- general
description:
type: string
required:
- userId
- cutPercentage
- type
- description
ParentCut:
type: object
properties:
userId:
type: string
cutPercentage:
type: number
userName:
type: string
type:
type: string
enum:
- general
description:
type: string
required:
- userId
- cutPercentage
- userName
- type
- description
GlobalCutsHistoryListEntity:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/GlobalCutsHistoryEntity'
next:
type: string
required:
- items
- next
UpdateUserDistributionCutsDto:
type: object
properties:
userId:
type: string
distributorCutPercentage:
type: number
minimum: 0
maximum: 100
version:
type: number
minimum: 0
required:
- userId
- distributorCutPercentage
- version
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-cuts-api-openapi.yml
- versusgame-openapi-original.json