POST
/api/v1/facility/{registry_id}/reportX-API-Key or JWTplatform+ tierExport PDF report
Renders the facility dossier as a PDF and returns the bytes. Platform tier or above only — Starter and Free receive a 403. Cached server-side by (registry_id, score_hash) with a 24h TTL so repeat exports of the same facility are near-instant.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| registry_idrequired | path | string | EPA Registry ID. |
Request
curl -X POST https://api.sigindex.com/api/v1/facility/110043804185/report \
-H "X-API-Key: $SIGINDEX_KEY" \
--output sigindex-report.pdfExample response
{
"content_type": "application/pdf",
"headers": {
"Content-Disposition": "attachment; filename=\"sigindex-report-110043804185.pdf\""
},
"body": "<binary PDF bytes>"
}