Skip to main content
GET
/
api
/
v1
/
organizations
/
{organizationId}
/
projects
/
{projectId}
/
assets
/
{id}
curl -X GET "https://api.metabind.ai/api/v1/organizations/org123/projects/proj456/assets/asset789" \
  -H "x-api-key: YOUR_API_KEY"
{
  "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"
  }
}
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/api/v1/organizations/org123/projects/proj456/assets/asset789" \
  -H "x-api-key: YOUR_API_KEY"
{
  "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"
  }
}