---
title: "Query project job data points"
method: GET
path: "/api/v1/job-data-points"
tags: ["Job Dashboard"]
---

# Query project job data points

`GET /api/v1/job-data-points`

Returns paginated job data points for the current project.

## Query parameters

- `job_type` 'extract' | 'parse' | 'classify', required — Job type to query.
- `hours` integer — Hours of history to include.
- `status` string[], nullable — Filter by status.
- `page_size` integer, nullable — Number of items per page.
- `page_token` string, nullable — Cursor token for the next page.
- `created_at_on_or_after` string, date-time, nullable — Include items created at or after this timestamp (inclusive)
- `created_at_on_or_before` string, date-time, nullable — Include items created at or before this timestamp (inclusive)
- `project_id` string, uuid, nullable
- `organization_id` string, uuid, nullable

## Cookies

- `session` string, nullable

## Response `200`

Successful Response

- JobDataPointResponse — Paginated list of job data points.
  - `items` JobDataPoint[], required — The list of items.
    - `id` string, required — Job ID.
    - `project_id` string, required — Project ID.
    - `created_at` string, date-time, required — Created timestamp.
    - `updated_at` string, date-time, required — Updated timestamp.
    - `status` string, required — Job status.
    - `custom_tag` string, required — Custom tag.
    - `error_message` string, nullable — Error message, if any.
    - `state_transitions` JobStateTransitions — State transition timestamps extracted from job_metadata. Matches the shape of StateTransitionTimestamps from job_latency/base.py with the addition of pending_at. The frontend derives queue latency, processing time, etc. from these timestamps.
      - `pending_at` string, date-time, nullable
      - `throttled_at` string, date-time, nullable
      - `running_at` string, date-time, nullable
      - `completed_at` string, date-time, nullable
      - `failed_at` string, date-time, nullable
      - `cancelled_at` string, date-time, nullable
  - `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)
