Marvia Developer Portal
DocsAPI ReferenceAbout
DocsAPI ReferenceAbout
  1. Assets
  • Users
    • Get a user
      GET
    • Delete a user
      DELETE
    • Update a user
      PATCH
    • List
      GET
    • Create a new user
      POST
    • Get user locations
      GET
    • Update user locations
      PUT
    • Get user groups
      GET
    • Update user groups
      PUT
  • Products
    • List products
      GET
  • Locations
    • Update a location
      PATCH
    • Get a location
      GET
    • Delete a location
      DELETE
    • List locations
      GET
    • Create a new location
      POST
  • Groups
    • Get a group
      GET
    • Update a group
      PATCH
    • Delete a group
      DELETE
    • List groups
      GET
    • Create a new group
      POST
  • Uploads
    • Initialize multipart upload
    • Complete multipart upload
  • Assets
    • List assets
      GET
    • Create a new asset
      POST
    • Get asset by UUID
      GET
    • Update an asset
      PATCH
    • Search assets
      GET
    • Get all meta tags
      GET
    • Get asset meta tags
      GET
    • Update asset meta tags
      PATCH
  1. Assets

Get asset meta tags

Production
https://api-v2.getmarvia.com
Production
https://api-v2.getmarvia.com
GET
https://api-v2.getmarvia.com
/v1/assets/{uuid}/meta-tags
Required Permission: read:assets
This endpoint requires an API key with the read:assets permission. Make sure your token was created with this permission during token creation.

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Path Params

Header Params

Responses

🟢200OK
application/json
Success
Body

🟠400Bad Request
🟠401Unauthorized
🟠404Not Found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-v2.getmarvia.com/v1/assets//meta-tags' \
--header 'Authorization: <api-key>'
Response Response Example
200 - Example 1
{
    "_tag": "Success",
    "data": {
        "metaTags": {
            "123e4567-e89b-12d3-a456-426614174000": "123e4567-e89b-12d3-a456-426614174001",
            "123e4567-e89b-12d3-a456-426614174001": [
                "123e4567-e89b-12d3-a456-426614174002",
                "123e4567-e89b-12d3-a456-426614174003"
            ],
            "123e4567-e89b-12d3-a456-426614174002": "Sunrise in Amsterdam"
        }
    }
}
Modified at 2025-10-22 12:46:34
Previous
Get all meta tags
Next
Update asset meta tags
Built with