> ## 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.

# Get Revision

Retrieve details about a specific revision.

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

### Path Parameters

| Parameter | Type   | Required | Description                    |
| :-------- | :----- | :------- | :----------------------------- |
| `id`      | string | Yes      | The unique ID of the revision. |

### Response

| Parameter  | Type   | Description           |
| :--------- | :----- | :-------------------- |
| `revision` | object | The revision details. |

### Example

<CodeGroup>
  ```bash Request theme={null}
  curl -X GET https://api.blobhub.io/v1/revisions/rev_001
  ```

  ```json Response theme={null}
  {
    "revision": {
      "id": "rev_001",
      "blob_id": "blob_789",
      "status": "ready",
      "phase": "commit"
    }
  }
  ```
</CodeGroup>
