# Get Resource

`GET /resources/wind_power_site`

Retrieve details of a specific premium wind power site.

## Parameters

### Query Parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `resource_id` | string | yes | The unique identifier of the resource. |

## Example request

### cURL

```bash
curl -X GET "https://api.solcast.com.au/resources/wind_power_site?resource_id=c533-fbce-05b5-b3ef" \
  -H "Authorization: Bearer $API_KEY"
```

### Python

```python
import requests

params = {
    "resource_id": "c533-fbce-05b5-b3ef",
}

response = requests.get(
    "https://api.solcast.com.au/resources/wind_power_site", params=params,
    headers={"Authorization": "Bearer API_KEY"},
)
data = response.json()
```

## Example response (200)

```json
{
  "resource_id": "c533-fbce-05b5-b3ef",
  "name": "GDP - Postman Test Site",
  "latitude": 36.5,
  "longitude": -5.5,
  "capacity": 14,
  "rotor_diameter": 90,
  "rated_power": 2,
  "hub_height": 100,
  "number_of_turbines": 7,
  "cut_in_wind_speed": 3,
  "cut_out_wind_speed": 25,
  "rated_wind_speed": 13.5
}
```

## Responses

### 200 — OK

Schema: `PremiumWindPowerResource`

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `resource_id` | string | yes | The unique identifier of the resource. |
| `name` | string | yes | The name of the resource. |
| `latitude` | number (double) | yes | The latitude of the resource. Must be a decimal number between -90 and 90. |
| `longitude` | number (double) | yes | The longitude of the resource. Must be a decimal number between -180 and 180. |
| `capacity` | number (double) | yes | The site capacity (rated power × number of turbines) in MW. |
| `rotor_diameter` | number (double) | no | Average diameter of turbine rotor in metres. Must be between 20 and 200. |
| `rated_power` | number (double) | no | Average turbine rated power in MW. Must be between 0.1 and 15000. |
| `hub_height` | number (double) | no | Average height of turbine hub in metres. Must be between 10 and 200. Defaults to 80. |
| `number_of_turbines` | integer (int32) | no | Total number of turbines at site. Must be between 1 and 500. Defaults to 1. |
| `cut_in_wind_speed` | number (double) | no | Minimum wind speed for generation in m/s. Must be between 0 and 10. Defaults to 3. |
| `cut_out_wind_speed` | number (double) | no | Maximum wind speed before shutdown in m/s. Must be between 15 and 35. Defaults to 25. |
| `rated_wind_speed` | number (double) | no | Wind speed at rated power in m/s. Must be between 8 and 20. Defaults to 12. |

Source: /docs/section/premium#getResourcesWindPowerSite
