---
title: "Get extraction job result"
method: GET
path: "/v1/extractions/jobs/{job_id}"
tags: ["extractions"]
---

# Get extraction job result

`GET /v1/extractions/jobs/{job_id}`

Get detailed information about a specific extraction job.

Args:
    job_id: The ID of the extraction job.

Returns:
    Detailed information about the extraction job.

## Path parameters

- `job_id` string, required — The ID of the extraction job to retrieve

## Response `200`

Detailed information about an extraction job

- ExtractionJob — A job for extracting structured data from documents.
  - `id` string, uuid, required — Unique identifier for the extraction job
  - `organization_id` string, uuid, required — ID of the organization that owns this job
  - `file_id` string, uuid, required — ID of the file being extracted
  - `created_at` string, date-time, required — When the job was created
  - `updated_at` string, date-time, required — When the job was last updated
  - `started_at` string, date-time, nullable, required — When the job started processing
  - `finished_at` string, date-time, nullable, required — When the job finished processing
  - `status` 'pending' | 'in_progress' | 'cancelled' | 'completed' | 'failed', required
  - `result` ExtractionResult, required — The result of an extraction job.
    - `data` object, required
    - `warnings` string[], required
  - `error` object, nullable, required — Error information if failed
  - `json_schema` object, required — The JSON schema used for extraction

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/mixedbread/apis/mxbai-omni.md) · [All operations](https://skmtc.net/mixedbread/apis/mxbai-omni/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mixedbread/mxbai-omni/revisions/2eece97b5ae5/schema)
