Get JSON report
less than a minute
GET
Use this endpoint to get a JSON response with the results of a report run. To use this API, the report must be configured to generate JSON reports.https://api.digicert.com/reports/v1/report/{{report-identifier}}/{{report-run-identifier}}/json
Important
If the response is larger than 2 MB, the request automatically downloads a .zip file containing a JSON file with the report data.Response format
This endpoint returns a list of JSON objects. Each object represents a single row in the report. In each object, the key represents the name of the column, and the value is the value of that column in a given row.
Example requests and responses
cURL
curl --request GET 'https://api.digicert.com/reports/v1/report/{{report-identifier}}/{{report-run-identifier}}/json' \
--header 'X-DC-DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \
200 OK
[
{
"Account ID": 9500650,
"Additional Emails": null,
"Alternative Order ID": null,
"Auto Renew": "No",
"Billing Address City": "SARATOGA SPRINGS",
"Billing Address Country": "us",
}
]
Path parameters
| Name | Req/Opt | Description |
|---|---|---|
| report_identifier | required | Report ID (UUID). To get the report ID, copy the report_identifier returned when you Create a report. Otherwise, use the List report history endpoint. |
| report_run_identifier | required | ID of the specific report run to download (UUID). To get the report run ID, use the List report history endpoint. |
Was this page helpful?
Provide feedback