Skip to main content
Retrieve the status of an asynchronous operation.

GET /operations/:id

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe unique ID of the operation.

Response

ParameterTypeDescription
operationobjectThe operation details.

Example

curl -X GET https://api.blobhub.io/v1/operations/op_123
{
  "operation": {
    "id": "op_123",
    "status": "processing",
    "progress": 50
  }
}