Skip to main content
GET
/
api
/
v3
/
parse
/
{id}
Get the status and result of an async parse job
curl --request GET \
  --url https://api.lighton.ai/api/v3/parse/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "parse_Kg",
  "status": "pending",
  "created_at": "2026-03-31T10:00:00+00:00",
  "completed_at": null,
  "processing_time_ms": null,
  "document": {
    "filename": "report.pdf",
    "page_count": null,
    "file_size_bytes": 245120,
    "mime_type": "application/pdf"
  },
  "result": null,
  "usage": null,
  "error": null
}

Documentation Index

Fetch the complete documentation index at: https://developers.lighton.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Public parse job id (e.g. parse_Kg) returned by POST /api/v3/parse with options.async=true. Malformed or unknown tokens return 404.

Response

Async parse job status and (once terminal) result. status is pending/processing while in flight, completed on success, failed on failure. The result and usage blocks are populated only on success; the error block is populated only on failure.

Returned by GET /api/v3/parse/<id>: async parse job status + (once terminal) result.

Same shape as the sync ParseResponseSerializer but with completion fields (result, usage, completed_at, processing_time_ms, document.page_count) allowed to be null while the job is still in flight, plus an error block populated only on terminal failure.

id
string
required
status
string
required
created_at
string<date-time>
required
completed_at
string<date-time> | null
required
processing_time_ms
integer | null
required
document
object
required
result
object
required
usage
object
required
error
object
required

Failure details surfaced on terminal-failed async parse jobs.