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

# Get Review

> Get a specific review by ID

## Endpoint

```
GET /reviews/{review_id}
```

## Response

```json theme={null}
{
  "id": 1,
  "task_type": "payment",
  "proposed_action": "Process payment of $5,000",
  "status": "approved",
  "created_at": "2024-01-01T12:00:00Z",
  "decision": {
    "decision_type": "approve",
    "notes": "Payment approved"
  }
}
```

## Example

```python theme={null}
import httpx

async with httpx.AsyncClient() as client:
    response = await client.get(
        "https://api.humancheck.dev/reviews/1"
    )
    review = response.json()
```
