# Sentinel Hub — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access satellite imagery from around the world and retrieve spectral band data, timestamps, and geographic coverage information to analyze Earth observation data. Process and generate statistics from satellite images for your specific areas of interest using powerful image processing tools.

**Category:** Maps & Geospatial | **Website:** [sentinel-hub.com/](https://sentinel-hub.com/) | **Docs:** [parse.bot/marketplace/1465f217-fe8b-482c-acbe-f4da214d4bff/sentinel-hub-com-api](https://parse.bot/marketplace/1465f217-fe8b-482c-acbe-f4da214d4bff/sentinel-hub-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-sentinel-hub-com-api-1465f217/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### catalog_search

Search satellite imagery by bounding box, datetime range, and collections. Returns STAC-compliant items. Requires Bearer token in headers or prior authentication.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sentinel-hub-com-api-1465f217/catalog_search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_catalog_info

Retrieve the STAC catalog root document. Returns the catalog identifier, STAC version, title, description, supported conformance class URIs, and navigation links to child collections, search endpoint, and API documentation. This is the entry point for discovering available resources in the catalog.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sentinel-hub-com-api-1465f217/get_catalog_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_collections

List all available satellite data collections from the Sentinel Hub STAC catalog. Returns structured metadata for each collection including its identifier, title, description, license, spatial bounding box, temporal interval, platform names, instruments, constellation, spectral bands (with common names), and data providers. Currently includes Sentinel-2 L1C, Sentinel-2 L2A, and Sentinel-1 GRD collections.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sentinel-hub-com-api-1465f217/get_collections \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_conformance

Retrieve the list of STAC and OGC API conformance classes supported by the Sentinel Hub catalog. Useful for determining which query capabilities (filtering, fields selection, CQL2) are available before constructing requests.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sentinel-hub-com-api-1465f217/get_conformance \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_statistics

Compute statistics for satellite band values over an AOI. Requires authentication.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sentinel-hub-com-api-1465f217/get_statistics \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### process_image

Process satellite imagery for a given area and time. Supports custom evalscripts for spectral band extraction. Requires authentication.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sentinel-hub-com-api-1465f217/process_image \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
