Get PDF
Retrieve a generated PDF by its ID
Endpoint
GEThttps://api.speedstein.com/v1/pdf/{pdf_id}
Parameters
| Parameter | Type | Description |
|---|---|---|
| pdf_id | string | The unique identifier of the PDF |
Response
{
"success": true,
"pdf": {
"id": "pdf_1a2b3c4d",
"download_url": "https://cdn.speedstein.com/pdf_1a2b3c4d.pdf",
"created_at": "2025-10-27T12:00:00Z",
"expires_at": "2025-11-03T12:00:00Z",
"pages": 5,
"size_bytes": 245760,
"status": "ready"
}
}Code Example
curl -X GET https://api.speedstein.com/v1/pdf/pdf_1a2b3c4d -H "Authorization: Bearer YOUR_API_KEY"