Built-in and custom reports
Built-in reports such as
full_report cover the standard credit-review layout: company summary, Syntage Score, risk indicators, corporate structure, revenue, financial statements, clients, and providers.
Custom reports select and order the insight entries you care about. Create one with POST /reports, setting organizational to true to share it with your organization.
Insight entries gated by a feature flag that is disabled for your organization are omitted from the report layout.
Download a report as a PDF
Report PDFs are generated asynchronously through the Exports API:- List your reports with
GET /reportsand store the ID of the report you want. - Create an export with
formatset topdfanduriset to/entities/{entityId}/reports/{reportId}?exporting=true. - Retrieve the export until its
statusisfinished. - Download the generated
report.insights.pdffile from the File resource referenced by the export.
exporting=true query parameter is required; other query parameters are not supported on report URIs.
PDF generation renders every insight in the report, so it can take a few minutes for entities with large datasets. Poll the export status instead of assuming a fixed completion time.