Skip to main content
GET
/
app
/
v1
/
organizations
/
{organizationId}
/
projects
/
{projectId}
/
assets
/
{id}
curl -X GET "https://api.metabind.ai/app/v1/organizations/org123/projects/proj456/assets/asset789" \
  -H "Authorization: Bearer YOUR_JWT"
{
  "data": {
    "id": "asset789",
    "name": "hero-image.jpg",
    "description": "Hero banner image for homepage header. High-resolution landscape image.\n\n**Usage:** Homepage hero section\n**Dimensions:** 1920x1080\n**Format:** JPEG",
    "type": "image/jpeg",
    "status": "active",
    "url": "https://cdn.metabind.ai/org123/proj456/assets/asset789/hero-image.jpg",
    "size": 2048576,
    "metadata": {
      "width": 1920,
      "height": 1080,
      "format": "jpeg",
      "usage": {
        "components": ["comp123"],
        "packages": ["1.0.0", "1.1.0"],
        "content": ["cont456"]
      }
    },
    "tags": ["hero", "homepage"],
    "createdAt": "2024-03-20T10:00:00Z",
    "updatedAt": "2024-03-20T10:00:00Z"
  }
}

Documentation Index

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

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

Retrieve detailed information about a specific asset.

Path Parameters

organizationId
string
required
The unique identifier of the organization
projectId
string
required
The unique identifier of the project
id
string
required
The unique identifier of the asset

Response

data
Asset
The complete asset object with all metadata and usage information
curl -X GET "https://api.metabind.ai/app/v1/organizations/org123/projects/proj456/assets/asset789" \
  -H "Authorization: Bearer YOUR_JWT"
{
  "data": {
    "id": "asset789",
    "name": "hero-image.jpg",
    "description": "Hero banner image for homepage header. High-resolution landscape image.\n\n**Usage:** Homepage hero section\n**Dimensions:** 1920x1080\n**Format:** JPEG",
    "type": "image/jpeg",
    "status": "active",
    "url": "https://cdn.metabind.ai/org123/proj456/assets/asset789/hero-image.jpg",
    "size": 2048576,
    "metadata": {
      "width": 1920,
      "height": 1080,
      "format": "jpeg",
      "usage": {
        "components": ["comp123"],
        "packages": ["1.0.0", "1.1.0"],
        "content": ["cont456"]
      }
    },
    "tags": ["hero", "homepage"],
    "createdAt": "2024-03-20T10:00:00Z",
    "updatedAt": "2024-03-20T10:00:00Z"
  }
}