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

---

[API](https://skmtc.net/pioneer/apis/brain-api.md) · [All operations](https://skmtc.net/pioneer/apis/brain-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pioneer/brain-api/revisions/31dfe831e079/schema)
