# Fetch Rank Grid Report By ID

```http
GET https://api.synup.com/api/v4/grid-report/{reportId}
```

This API retrieves all grid rank reports associated with a specific location.

**Behaviour:**
- Business details – It returns a list of reports generated for the given location.
- Grid configuration – Grid size, geographic coordinates, and search parameters.
- Ranking results – Performance across specified keywords within the grid.

Source: https://developer.synup.com/api/grid-rank/fetch-rank-grid-report-by-id

## Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `reportId` | string | required | UUID of the report to fetch |

## Example request

```bash
curl -X GET 'https://api.synup.com/api/v4/grid-report/:reportId' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json'
```

## Responses

| Status | Description |
| --- | --- |
| `200` | Grid rank report retrieved successfully |
| `400` | Bad Request - Invalid report ID format |
| `401` | Unauthorized - Valid API key required |
| `403` | Forbidden - Insufficient permissions |
| `404` | Report not found |
