DocsAPI ReferenceAbout
DocsAPI ReferenceAbout
  1. assets
  • locations
    • List locations
      GET
    • Create a location
      POST
    • Get a location
      GET
    • Update a location
      PATCH
    • Delete a location
      DELETE
  • users
    • List users
      GET
    • Create a new user
      POST
    • Get a user
      GET
    • Delete a user
      DELETE
  • groups
    • List groups
      GET
    • Create a new group
      POST
    • Get a group
      GET
    • Update a group
      PATCH
    • Delete a group
      DELETE
  • assets
    • List assets
      GET
    • Create a asset
      POST
    • Search assets
      GET
    • Get single asset
      GET
  • products
    • List products
      GET
  • uploads
    • Init multipart
      POST
    • Complete multipart
      PUT
  1. assets

Get single asset

Production
https://api-v2.getmarvia.com
Production
https://api-v2.getmarvia.com
GET
https://api-v2.getmarvia.com
/v1/assets/{uuid}
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": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
        "urls": {
            "original": "string",
            "thumbnail": "string",
            "preview": "string",
            "cdnUrl": "string"
        },
        "fileExtension": "string",
        "fileNameOriginal": "string",
        "fileSize": 0,
        "translations": [
            {
                "locale": "en",
                "name": "Asset Name"
            }
        ],
        "createdAt": "2019-08-24",
        "editedAt": "2019-08-24",
        "height": 0,
        "width": 0,
        "tags": [
            {
                "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
                "translations": [
                    {
                        "locale": "en",
                        "name": "Asset Name"
                    }
                ]
            }
        ],
        "aiTags": [
            {
                "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
                "translations": [
                    {
                        "locale": "en",
                        "name": "Asset Name"
                    }
                ]
            }
        ],
        "categories": [
            {
                "translations": [
                    {
                        "locale": "en",
                        "name": "Asset Name"
                    }
                ]
            }
        ],
        "metaTags": [
            {
                "uuid": "string",
                "translations": [
                    {
                        "locale": "en",
                        "name": "Asset Name"
                    }
                ],
                "metaTags": [
                    {
                        "uuid": "string",
                        "name": [
                            {
                                "locale": "en",
                                "name": "Asset Name"
                            }
                        ],
                        "type": "text",
                        "value": "string"
                    }
                ]
            }
        ]
    }
}

Request

Path Params

Header Params

Responses

🟢200OK
application/json
Asset fetched successfully
Body

🟠404Record Not Found
🔴500Server Error
Modified at 2025-08-06 11:02:17
Previous
Search assets
Next
List products
Built with