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

# List Reviews

> List reviews with filtering and pagination

## Endpoint

```
GET /reviews
```

## Query Parameters

* `status` - Filter by status (pending, approved, rejected, modified)
* `framework` - Filter by framework
* `task_type` - Filter by task type
* `organization_id` - Filter by organization
* `page` - Page number (default: 1)
* `page_size` - Items per page (default: 20, max: 100)

## Response

```json theme={null}
{
  "reviews": [...],
  "total": 100,
  "page": 1,
  "page_size": 20
}
```

## Example

```python theme={null}
import httpx

async with httpx.AsyncClient() as client:
    response = await client.get(
        "https://api.humancheck.dev/reviews",
        params={
            "status": "pending",
            "page": 1,
            "page_size": 20
        }
    )
    reviews = response.json()
```
