POST/api/v1/facility/{registry_id}/reportX-API-Key or JWTplatform+ tier

Export 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

NameInTypeDescription
registry_idrequiredpathstringEPA Registry ID.

Request

curl -X POST https://api.sigindex.com/api/v1/facility/110043804185/report \
  -H "X-API-Key: $SIGINDEX_KEY" \
  --output sigindex-report.pdf

Example response

{
  "content_type": "application/pdf",
  "headers": {
    "Content-Disposition": "attachment; filename=\"sigindex-report-110043804185.pdf\""
  },
  "body": "<binary PDF bytes>"
}