# Report Detail

Source: https://www.ranked.ai/developers/api-reference/reports/detail

`GET https://app.ranked.ai/api/v1/projects/{projectId}/reports/{reportId}`

> Get or delete a specific report

### GET - Get report details

- `projectId` (path, string, required): Project UUID
- `reportId` (path, string, required): Report slug ID

**Request**

```bash cURL
curl "https://app.ranked.ai/api/v1/projects/{projectId}/reports/{reportId}" \
  -H "Authorization: Bearer rk_live_your_api_key"
```

### DELETE - Delete a report

Requires a **Read + Write** API key. Soft-deletes the report link.

**Request**

```bash cURL
curl -X DELETE "https://app.ranked.ai/api/v1/projects/{projectId}/reports/{reportId}" \
  -H "Authorization: Bearer rk_live_your_write_key"
```
