# Get Site Details for Your Plan

```http
GET https://api.synup.com/api/v4/plan-sites
```

This API retrieves all site details associated with a specific plan, including:

- Unique identifiers for each site
- Supported countries where the plan is available
- Site URLs for access and management

Source: https://developer.synup.com/api/locations/get-site-details-for-your-plan

## Example request

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

## Responses

| Status | Description |
| --- | --- |
| `200` | Successfully retrieved site details for the plan |
| `401` | Unauthorized. API key is missing or invalid. |
| `500` | Internal server error. |
