> ## Documentation Index
> Fetch the complete documentation index at: https://docs.axiomancer.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Satellite Imagery

> MODIS and Sentinel-2 NDVI crop health data, yield estimates, and production forecasts — endpoints for agricultural commodity monitoring tied to export flow.

MODIS + Sentinel-2 NDVI crop health, yield estimates, and production forecasts.

## `GET` `/api/v1/satellite/regions`

All monitored crop regions with latest NDVI and health assessments.

**Response**

```json theme={null}
{ "regions": [...] }
```

**Example**

```bash theme={null}
curl -X GET \
  https://axiomoverwatch.io/api/v1/satellite/regions
```

## `GET` `/api/v1/satellite/health`

Crop health assessments with NDVI deviation and yield estimates.

**Parameters**

| Name     | Type   | Required | Description          |
| -------- | ------ | -------- | -------------------- |
| `region` | string |          | Region slug          |
| `status` | string |          | Health status filter |
| `crop`   | string |          | Crop type            |
| `limit`  | number |          | Default 100, max 500 |

**Response**

```json theme={null}
{ "assessments": [...] }
```

**Example**

```bash theme={null}
curl -X GET \
  https://axiomoverwatch.io/api/v1/satellite/health?region=VALUE&status=VALUE
```

## `GET` `/api/v1/satellite/production`

Production forecasts linked to port export estimates.

**Parameters**

| Name     | Type   | Required | Description          |
| -------- | ------ | -------- | -------------------- |
| `region` | string |          | Region slug          |
| `port`   | string |          | Port slug            |
| `crop`   | string |          | Crop type            |
| `limit`  | number |          | Default 100, max 500 |

**Response**

```json theme={null}
{ "forecasts": [...] }
```

**Example**

```bash theme={null}
curl -X GET \
  https://axiomoverwatch.io/api/v1/satellite/production?region=VALUE&port=VALUE
```
