---
title: "Gliner2 Job Status"
method: GET
path: "/gliner-2/jobs/{job_id}"
tags: ["gliner"]
---

# Gliner2 Job Status

`GET /gliner-2/jobs/{job_id}`

Get status and result of an async GLiNER-2 job.

Returns:
- 200 with status="complete" and result when done
- 200 with status="processing" while in progress
- 200 with status="error" and error message if failed
- 404 if job not found or belongs to different user

Args:
    job_id: UUID of the job to check
    auth: Authentication result

Returns:
    GlinerJobStatus with current status and result if complete

## Path parameters

- `job_id` string, required

## Response `200`

Successful Response

- GlinerJobStatus — Response from job status check.
  - `job_id` string, required
  - `status` string, required
  - `result` union
    - object
    - unknown[]
      - unknown
  - `error` string, nullable
  - `token_usage` integer, nullable
  - `created_at` string, required
  - `completed_at` string, nullable

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-24** `1cffaad2a921` — 1 warning, 1 info
  - removed the optional property `detail` from the response with the `422` status
  - added the required property `error` to the response with the `422` status

[Change history](https://skmtc.dev/pioneer/apis/brain-api/changes/gliner-2/jobs/:job_id/get.md)

---

[API](https://skmtc.dev/pioneer/apis/brain-api.md) · [All operations](https://skmtc.dev/pioneer/apis/brain-api/llms.txt) · [OpenAPI document](https://skmtc.dev/pioneer/apis/brain-api/revisions/1cffaad2a921?raw)
