--- title: "Get JSON report" source_url: https://dev.digicert.com/certcentral-apis/report-library-api/get-json-report.html api_method: GET api_endpoint: "/reports/v1/report/{{report-identifier}}/{{report-run-identifier}}/json" api_url: "https://api.digicert.com/reports/v1/report/{{report-identifier}}/{{report-run-identifier}}/json" --- **GET** `https://api.digicert.com/reports/v1/report/{{report-identifier}}/{{report-run-identifier}}/json` 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. > **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. |