---
title: "List report names"
source_url: https://dev.digicert.com/certcentral-apis/report-library-api/list-report-names.html
api_method: GET
api_endpoint: "/reports/v1/report/names"
api_url: "https://api.digicert.com/reports/v1/report/names"
---
**GET** `https://api.digicert.com/reports/v1/report/names`
Use this endpoint to list the display name for each report in your account.
## Example requests and responses
## cURL
```
curl --request GET 'https://api.digicert.com/reports/v1/report/names' \
--header 'X-DC_DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \
```
## 200 OK
```
{
"report_names": [
"Example Report A",
"Example Report B",
"Example Report C"
]
}
```
## URL query parameters
| Name |
Req/Opt |
Type |
Description |
| report_display_name |
optional |
string |
Display name of a specific report to search for. Supports partial search. Case insensitive. |
## Response parameters
| Name |
Type |
Description |
| report_names |
array |
List of report display names. If the request uses the report_display_name query parameter, the response only includes report names that match the provided value. |