Skip to main content

Endpoint

GET /v1/analyses/{analysisId}/report

Request

curl -X GET "http://client-omni-api.argosidentity.com/v1/analyses/{analysisId}/report?locale=en&includeRawData=false" \
  -H "x-api-key: your-api-key-here" \
  -o report.pdf

Query Parameters

ParameterTypeRequiredDefaultDescription
localestringenReport language: en, ko
includeRawDatabooleanfalseInclude raw extracted data in the report

Response (200 OK)

The response is a binary PDF file with the following headers:
HeaderValue
Content-Typeapplication/pdf
Content-Dispositionattachment; filename="analysis_{id}_report.pdf"
The response body is binary PDF data. Use the -o flag with curl (or equivalent in your HTTP client) to save the file directly to disk.
Reports are only available when the analysis status is completed. Requesting a report for an analysis in any other status will return a 400 error.

Error Codes

StatusCodeDescription
400REPORT_NOT_AVAILABLEThe analysis is not in completed status
404ANALYSIS_NOT_FOUNDThe specified analysis was not found