Get conversion
GET /v1/conversions/{id} — fetch a past conversion and its schema.
GET https://api.createafillablepdf.com/v1/conversions/{id}
Retrieve a conversion you created, including a fresh signed document_url and the field schema.
curl https://api.createafillablepdf.com/v1/conversions/c_123 \
-H "Authorization: Bearer sk_live_•••"
Response 200
{
"id": "c_123",
"status": "converted",
"filename": "applicant.pdf",
"pages": 1,
"fields": 23,
"confidence": 0.997,
"ms": 880,
"document_url": "https://cdn.createafillablepdf.com/…/out.pdf",
"schema": [{ "name": "applicant_legal_name", "type": "text", "page": 0 }],
"created_at": "2026-06-26T18:00:00Z"
}
Returns 404 (not_found) if the conversion doesn't exist or isn't yours. Files are deleted
after 24 hours, after which document_url is null.