Export jobs as CSV
Jobs
Export jobs as CSV
Download a CSV of moderation jobs in a date range, including prompt and category metadata.
GET
Export jobs as CSV
Documentation Index
Fetch the complete documentation index at: https://docs.omnifence.ai/llms.txt
Use this file to discover all available pages before exploring further.
Requires the
job:read scope. Requests without this scope receive a 403 FORBIDDEN response. See
authentication.text/csv; charset=utf-8 with a UTF-8 BOM so spreadsheet apps decode prompts correctly.
Date range
Bothfrom and to are required ISO 8601 date-time strings. Jobs are filtered by created_at (from inclusive, to exclusive). The maximum window is 366 days; longer ranges return 400 INVALID_REQUEST.
CSV columns
| Column | Description |
|---|---|
job_id | UUID of the job |
type | pre or post |
status | queued, processing, completed, or failed |
is_prohibited | true if rejected, false if passed, or empty if not yet decided |
created_at | ISO 8601 timestamp the job was submitted |
completed_at | ISO 8601 timestamp the job finished, or empty |
prompt | Original prompt submitted with the job |
reason | Why a prompt was rejected by the prohibition check |
category_ai_adult_general | true, false, or empty if no moderation log exists |
category_underage | true, false, or empty if no moderation log exists |
category_nsfw | true, false, or empty if no moderation log exists |
false).
Example
to is exclusive, so use the start of the day after your last desired date (e.g. 2026-05-01T00:00:00Z to include all of April).Authorizations
API key from the Stars dashboard
Query Parameters
Inclusive lower bound on job created_at (ISO 8601).
Exclusive upper bound on job created_at (ISO 8601). Use the start of the day after your last desired date to include the full final day.
Response
200 - text/csv
CSV stream of jobs.
The response is of type file.
