VersusGame Assets API
The assets API from VersusGame — 4 operation(s) for assets.
The assets API from VersusGame — 4 operation(s) for assets.
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-assets-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 Assets API
version: '1.0'
contact: {}
description: 'Operations tagged assets across 2 of this provider''s published API definitions: versusgame-assets-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: assets
paths:
/v1/admin/assets:
get:
operationId: AssetAdminController_list
parameters:
- name: search
required: false
in: query
schema:
$ref: '#/components/schemas/AssetSearchFindAllDto2'
- name: limit
required: false
in: query
schema:
type: number
- name: offset
required: false
in: query
schema:
type: number
responses:
'200':
description: List of assets
content:
application/json:
schema:
$ref: '#/components/schemas/ListAsset'
security:
- access-token: []
tags:
- assets
servers:
- url: https://api.versusgame.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
/v1/admin/assets/{assetId}:
get:
operationId: AssetAdminController_byId
parameters:
- name: assetId
required: true
in: path
schema:
type: string
responses:
'200':
description: Get Asset
content:
application/json:
schema:
$ref: '#/components/schemas/Asset'
security:
- access-token: []
tags:
- assets
servers:
- url: https://api.versusgame.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
/v1/assets:
post:
operationId: AssetsController_create
parameters: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAssetDto'
responses:
'201':
description: New Asset
content:
application/json:
schema:
$ref: '#/components/schemas/Asset'
security:
- access-token: []
tags:
- assets
servers:
- url: https://api.versusgame.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
/v1/assets/{assetId}:
get:
operationId: AssetsController_get
parameters:
- name: assetId
required: true
in: path
schema:
type: string
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/Asset'
security:
- access-token: []
tags:
- assets
delete:
operationId: AssetsController_delete
parameters:
- name: assetId
required: true
in: path
schema:
type: string
responses:
'204':
description: Delete Asset
security:
- access-token: []
tags:
- assets
servers:
- url: https://api.versusgame.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
schemas:
Asset:
type: object
properties:
jobStatus:
allOf:
- $ref: '#/components/schemas/JobStatus'
isVideo:
type: boolean
isAudio:
type: boolean
isImage:
type: boolean
videoUrl:
$ref: '#/components/schemas/VideoUrls'
imageUrl:
type: string
audioUrl:
type: string
id:
type: string
name:
type: string
mimeType:
type: string
size:
type: number
width:
type: number
height:
type: number
errorCode:
type: string
userId:
type: string
createdAt:
format: date-time
type: string
updatedAt:
format: date-time
type: string
deletedAt:
format: date-time
type: string
uploadSignedUrl:
type: string
required:
- jobStatus
- isVideo
- isAudio
- isImage
- videoUrl
- imageUrl
- audioUrl
- id
- name
- mimeType
- size
- width
- height
- errorCode
- userId
- createdAt
- updatedAt
- deletedAt
ListAsset:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/Asset'
total:
type: number
required:
- items
- total
CreateAssetDto:
type: object
properties:
name:
type: string
mimeType:
type: string
size:
type: number
minimum: 1
width:
type: number
height:
type: number
required:
- name
- mimeType
- size
- width
- height
VideoUrls:
type: object
properties:
hls:
type: string
mp4360:
type: string
mp4540:
type: string
mp4720:
type: string
poster:
type: string
required:
- hls
- mp4360
- mp4540
- mp4720
- poster
AssetSearchFindAllDto:
type: object
properties:
userIds:
type: array
items:
type: string
ids:
type: array
items:
type: string
AssetSearchFindAllDto2:
type: object
properties:
search:
$ref: '#/components/schemas/AssetSearchFindAllDto'
JobStatus:
type: string
enum:
- created
- processing
- complete
- error
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-assets-api-openapi.yml
- versusgame-openapi-original.json