GET /translate/chunks/{job_id} Requires Auth

List PDF chunks

Get list of all translated chunks for a PDF translation job

Test Endpoint

Parameters

job_id * path string

Job identifier

Code Examples

curl -X GET \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  -H 'Content-Type: application/json' \
  'https://nexus-api.dhurgham.dev/api/file-translation-api/translate/chunks/{job_id}'
Example cURL Request
curl -X GET \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  'https://nexus-api.dhurgham.dev/api/file-translation-api/translate/chunks/{job_id}'
frontend.example_response
{
    "success": false,
    "job_id": "string",
    "chunks": []
}