Skip to main content
GET
/
v1
/
medias
List
curl --request GET \
  --url https://{defaultHost}/v1/medias \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/medias"
  },
  "data": [
    {
      "id": "b0164f7e-04d3-41fc-9cb9-913bcd30106a",
      "object": "media",
      "alt": null,
      "byte_size": 12254,
      "content_type": "image/png",
      "extension": "png",
      "filename": "test.png",
      "height": null,
      "public_access": false,
      "release_json": null,
      "title": null,
      "url": null,
      "width": null,
      "url_expires_at": null,
      "created_at": 1767909724,
      "updated_at": 1767909724
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

public_access
boolean

Only return objects that have public access or private access.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.