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

# List Pending Reviews

> List extractions waiting for human review

## Endpoint

```
GET https://api.documind.cloud/api/v1/pending-reviews
```

## Authentication

Requires `extractions:read` scope.

## Response

```json theme={null}
[
  {
    "id": "extraction-id",
    "document_id": "document-id",
    "user_id": "user-id",
    "filename": "invoice.pdf",
    "created_at": "2026-06-02T10:30:00Z",
    "updated_at": "2026-06-02T10:30:00Z",
    "status": "completed"
  }
]
```

## Example

```python theme={null}
response = requests.get(
    "https://api.documind.cloud/api/v1/pending-reviews",
    headers={"X-API-Key": API_KEY}
)

pending_reviews = response.json()
```

Use `GET /api/v1/data/extractions/{extraction_id}` for full extraction details.
