# Guide

The Imagery API provides radar and satellite images for a given location in multiple resolutions.

For full request and response field details, see [Imagery Parameters](/developers/imagery/parameters).

:::note{title="Base URLs"}

- **Production:** api.accuweather.com
- **Development:** apidev.accuweather.com

Examples below use the production host. Swap in apidev.accuweather.com for development.

:::

| Endpoint | Description |
|---|---|
| [Radar and satellite images by location key](#radar-and-satellite-images-by-location-key) | Radar and satellite imagery in multiple resolutions |

---

## Radar and satellite images by location key

Retrieve radar and satellite images for a specific location.

```
https://{baseUrl}/imagery/{version}/maps/radsat/{resolution}/{locationKey}{.format}?apikey={your key}&language={language code}
```

## Example

```
https://api.accuweather.com/imagery/v1/maps/radsat/1024x1024/335315?apikey={your key}&language=es
```

**Response:**

```json
{
    "MobileLink": "https://m.accuweather.com/es/us/pennsylvania/weather-radar",
    "Link": "https://www.accuweather.com/es/us/pennsylvania/weather-radar",
    "Radar": {
        "Size": "1024x1024",
        "Images": [
            {
                "Date": "2013-05-16T11:00:00-04:00",
                "Url": "https://vortex.accuweather.com/adc2010/onetile/usradar/1024x1024/PA__1305161500.png"
            },
            {
                "Date": "2013-05-16T11:05:00-04:00",
                "Url": "https://vortex.accuweather.com/adc2010/onetile/usradar/1024x1024/PA__1305161505.png"
            },
            {
                "Date": "2013-05-16T11:15:00-04:00",
                "Url": "https://vortex.accuweather.com/adc2010/onetile/usradar/1024x1024/PA__1305161515.png"
            },
            {
                "Date": "2013-05-16T11:20:00-04:00",
                "Url": "https://vortex.accuweather.com/adc2010/onetile/usradar/1024x1024/PA__1305161520.png"
            },
            {
                "Date": "2013-05-16T11:35:00-04:00",
                "Url": "https://vortex.accuweather.com/adc2010/onetile/usradar/1024x1024/PA__1305161535.png"
            }
        ]
    },
    "Satellite": {
        "Size": "1024x1024",
        "Images": [
            {
                "Date": "2013-05-16T08:45:00-04:00",
                "Url": "https://vortex.accuweather.com/adc2010/onetile/world_ir/1024x1024/PA__1305161245.png"
            },
            {
                "Date": "2013-05-16T09:15:00-04:00",
                "Url": "https://vortex.accuweather.com/adc2010/onetile/world_ir/1024x1024/PA__1305161315.png"
            },
            {
                "Date": "2013-05-16T09:45:00-04:00",
                "Url": "https://vortex.accuweather.com/adc2010/onetile/world_ir/1024x1024/PA__1305161345.png"
            },
            {
                "Date": "2013-05-16T10:15:00-04:00",
                "Url": "https://vortex.accuweather.com/adc2010/onetile/world_ir/1024x1024/PA__1305161415.png"
            },
            {
                "Date": "2013-05-16T11:15:00-04:00",
                "Url": "https://vortex.accuweather.com/adc2010/onetile/world_ir/1024x1024/PA__1305161515.png"
            }
        ]
    }
}
```
