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

Retrieve the status of an asynchronous operation.

## **GET** `/operations/:id`

### Path Parameters

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

### Response

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

### Example

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

  ```json Response theme={null}
  {
    "operation": {
      "id": "op_123",
      "status": "processing",
      "progress": 50
    }
  }
  ```
</CodeGroup>
