Skip to main content
GET
/
openapi
/
v1
/
assets
/
material
/
list
List materials
curl --request GET \
  --url https://api.vmeg.ai/openapi/v1/assets/material/list \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "message": "",
  "data": {
    "records": [
      {
        "materialId": "<string>",
        "category": "video",
        "name": "<string>",
        "addressUrl": "<string>",
        "thumbnailUrl": "<string>",
        "audioUrl": "<string>",
        "resolution": "1920x1080",
        "mimeType": "<string>",
        "fileHash": "<string>",
        "filesize": 123,
        "duration": 123,
        "createTime": "<string>",
        "updateTime": "<string>"
      }
    ],
    "total": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vmeg.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send your API Key in the Authorization header (Bearer <api_key>). See Authentication.

Query Parameters

projId
string
required

Project ID (from API Key scope)

currentPage
integer
default:1

Page number (1-based)

pageSize
integer
default:20

Page size

Response

200 - application/json

Success

code
integer
required

Business code; 200 means success

Example:

200

message
string

Human-readable detail when code is not success

Example:

""

data
object