> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blobhub.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Resolve Metadata

Retrieve metadata items associated with a blob by alias.

## **GET** `/blobs/:org_id/:blob_id/metadata/:alias`

### Path Parameters

| Parameter | Type   | Required | Description                        |
| :-------- | :----- | :------- | :--------------------------------- |
| `org_id`  | string | Yes      | The unique ID of the organization. |
| `blob_id` | string | Yes      | The unique ID of the blob.         |
| `alias`   | string | Yes      | The alias of the metadata item(s). |

### Response

| Parameter | Type  | Description             |
| :-------- | :---- | :---------------------- |
| `items`   | array | List of metadata items. |

### Example

<CodeGroup>
  ```bash Request theme={null}
  curl -X GET https://api.blobhub.io/v1/blobs/org_123/blob_789/metadata/accuracy
  ```

  ```json Response theme={null}
  {
    "items": [
      {
        "id": "meta_001",
        "blob_id": "blob_789",
        "alias": "accuracy",
        "value": "0.98"
      }
    ]
  }
  ```
</CodeGroup>
