> ## 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 revision by alias.

## **GET** `/revisions/:id/metadata/:alias`

### Path Parameters

| Parameter | Type   | Required | Description                        |
| :-------- | :----- | :------- | :--------------------------------- |
| `id`      | string | Yes      | The unique ID of the revision.     |
| `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/revisions/rev_001/metadata/validation
  ```

  ```json Response theme={null}
  {
    "items": [
      {
        "id": "meta_003",
        "revision_id": "rev_001",
        "alias": "validation",
        "value": "passed"
      }
    ]
  }
  ```
</CodeGroup>
