DocsAPI ReferenceAbout
DocsAPI ReferenceAbout
  1. assets
  • Overview
  • Getting Started
  • Authentication
  • Permissions
  • API Reference
    • locations
      • List locations
      • Create a location
      • Get a location
      • Update a location by UUID
      • Delete a location
    • users
      • List users
      • Create a new user
      • Get a user
      • Delete a user
    • groups
      • List groups
      • Create a new group
      • Get a group
      • Update a group
      • Delete a group
    • assets
      • List assets
        GET
      • Get single asset
        GET
    • products
      • List products
  1. assets

List assets

Production
https://api-v2.getmarvia.com
Production
https://api-v2.getmarvia.com
GET
https://api-v2.getmarvia.com
/v1/assets
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-v2.getmarvia.com/v1/assets' \
--header 'Authorization: '
Response Response Example
200 - Example 1
{
    "data": [
        {
            "uuid": "string",
            "urls": {
                "original": "string",
                "thumbnail": "string",
                "preview": "string"
            },
            "fileExtension": "string",
            "fileNameOriginal": "string",
            "translations": [
                {
                    "locale": "en",
                    "name": "Asset Name"
                }
            ],
            "createdAt": "2019-08-24",
            "editedAt": "2019-08-24"
        }
    ],
    "pagination": {
        "limit": 1,
        "page": 1,
        "total": 0,
        "pageCount": 0
    }
}

Request

Query Params

Header Params

Responses

🟢200OK
application/json
Assets fetched successfully
Body

🟠400Bad Request
🔴500Server Error
Modified at 2025-07-25 04:54:55
Previous
Delete a group
Next
Get single asset
Built with