Skip to main content
GET
/
pub
/
v2
/
assets
List Assets
curl --request GET \
  --url https://api.rendernet.ai/pub/v2/assets \
  --header 'X-API-KEY: <x-api-key>'
{
  "data": [
    {
      "size": {
        "height": 512,
        "width": 512
      },
      "duration": 30,
      "frames": 200,
      "url": "object-url",
      "id": "asset_id",
      "status": "active",
      "type": "image"
    }
  ],
  "err": {},
  "pagination": {
    "page": 1,
    "page_size": 10,
    "total": 100
  }
}

Documentation Index

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

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

V2 offers streamlined and precise attributes in requests and responses, making asset usage more efficient and simpler.

Headers

X-API-KEY
string
required

API key needed to access our public endpoints. You can find yours under the 'Account' section of the website

Query Parameters

page
integer

The page number of the feed

Required range: x >= 1
page_size
integer

The page size of the feed

Required range: 1 <= x <= 50
type
enum<string>

Filter asset by its type. By default it lists all types of assets

Available options:
image,
video,
audio

Response

200 - application/json

A list of assets

data
object[]
err
object

The error if the request was not successful

pagination
object

The pagination information