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

# Get Extraction

> Get a specific extraction by ID

## Endpoint

```
GET https://api.documind.cloud/api/v1/data/extractions/{extraction_id}
```

## Path Parameters

| Parameter       | Type          | Required | Description          |
| --------------- | ------------- | -------- | -------------------- |
| `extraction_id` | string (UUID) | Yes      | ID of the extraction |

## Response

```json theme={null}
{
  "id": "extraction-id",
  "document_id": "doc-id",
  "results": {...},
  "results_metadata": {
    "batch_id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa"
  },
  "reviewed_results": {...},
  "needs_review": false,
  "is_reviewed": false,
  "status": "completed",
  "error_message": null,
  "created_at": "2026-06-03T10:30:00Z"
}
```
