---
title: "Get Classification Job Results"
method: GET
path: "/api/v1/classifier/jobs/{classify_job_id}/results"
tags: ["Classifier", "Beta", "Classifier"]
---

# Get Classification Job Results

`GET /api/v1/classifier/jobs/{classify_job_id}/results`

Get the results of a classify job. Experimental: not production-ready and subject to change.

## Path parameters

- `classify_job_id` string, uuid, required

## Query parameters

- `project_id` string, uuid, nullable
- `organization_id` string, uuid, nullable

## Cookies

- `session` string, nullable

## Response `200`

Successful Response

- ClassifyJobResults — Response model for the classify endpoint following AIP-132 pagination standard.
  - `items` FileClassification[], required — The list of items.
    - `id` string, uuid, required — Unique identifier
    - `created_at` string, date-time, nullable — Creation datetime
    - `updated_at` string, date-time, nullable — Update datetime
    - `classify_job_id` string, uuid, required — The ID of the classify job
    - `file_id` string, uuid, nullable — The ID of the classified file
    - `result` ClassificationResult — Result of classifying a single file.
      - `reasoning` string, required — Step-by-step explanation of why this classification was chosen and the confidence score assigned
      - `confidence` number, required — Confidence score of the classification (0.0-1.0)
      - `type` string, nullable, required — The document type that best matches, or null if no match.
  - `next_page_token` string, nullable — A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.
  - `total_size` integer, nullable — The total number of items available. This is only populated when specifically requested. The value may be an estimate and can be used for display purposes only.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/run-llama/apis/llama-platform.md) · [All operations](https://skmtc.net/run-llama/apis/llama-platform/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/run-llama/llama-platform/revisions/b17341164de9/schema)
