$ man satellite-address
/satellite-address
PRICE / CALL
$0.01
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
localeCATEGORY
uncategorized
STATUS
● live
NAME
satellite-address — turns a street address into a cloud-free satellite image in one call
SYNOPSIS
POST https://x402.agentutility.ai/satellite-address
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Turns a street address into a cloud-free satellite image in one call. Composes OpenStreetMap Nominatim geocoding with the Sentinel Hub Processing API: send a free-form address and get back both the geocoded address metadata and a recent cloud-free Sentinel-2 PNG centered on the best match, with an optional NASA GIBS MODIS fallback for regional views. JSON output contains: { query, geocode_result, lat, lon, zoom, bbox, data_base64, license, attribution, ... }. Use it as an address to satellite image, postal-code satellite snapshot, or place-name to space view.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| address | string | Free-form address, postal code, place name, or POI. Examples: '1600 Amphitheatre Parkway, Mountain View, CA', 'Brandenburg Gate', '94110'. | required |
| zoom | number | Slippy-map zoom level. 1-16. Default 15 (street/block scale). | optional |
| size | number | Output image side length in pixels. 64-2500. Default 512. | optional |
| source | string | 'cdse' (default, Sentinel-2 10m) or 'gibs' (NASA MODIS ~250m, zoom ≤9 only). enum: cdse · gibs | optional |
| days_back | number | CDSE lookback window for least-cloudy mosaic in days. 7-180. Default 30. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| source | string | Imagery provider used for this response, typically sentinel-hub or nasa-gibs fallback. |
| query | string | Original free-form address or place-name string the caller submitted for geocoding. |
| geocode_result | string | Nominatim match metadata including display name, address components, and OSM type/id. |
| lat | string | Latitude in decimal degrees of the geocoded match center used to frame the satellite tile. |
| lon | string | Longitude in decimal degrees of the geocoded match center used to frame the satellite tile. |
| zoom | string | Effective zoom level used when computing the bounding box around the geocoded point. |
| size | string | Pixel dimensions of the returned PNG, typically given as width x height. |
| bbox | string | Bounding box [minLon, minLat, maxLon, maxLat] of the area rendered in the image. |
| time_range | string | Acquisition window queried against Sentinel-2 to pick the most recent cloud-free scene. |
| format | string | Image format of the rendered tile, typically png. |
| content_type | string | MIME type of the embedded image payload, typically image/png. |
| data_base64 | string | Base64-encoded bytes of the cloud-free Sentinel-2 PNG centered on the matched address. |
| bytes | string | Decoded byte length of the returned image payload. |
| license | string | License terms covering the imagery and geocoding data, e.g. Copernicus Sentinel and ODbL. |
| attribution | string | Required attribution string crediting Sentinel Hub, Copernicus, and OpenStreetMap contributors. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/satellite-address \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the satellite-address tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- localesatellite-imagerygeocodingsentinel-2address-lookupaerial-viewcloud-free-imagery
- methods
- POST
- cluster
- locale
- price
- $0.01 USDC per call
ADJACENT — other endpoints in locale
| endpoint | description | price |
|---|---|---|
| city-weather | Returns current weather by city name with an instant geocoded lookup. | $0.01 |
| current | Instant current weather by city name: geocodes a city or place name, then returns current Open-Meteo temperature, feels-like, humidity, w… | $0.01 |
| current-weather-city | Current weather city lookup / city-name weather conditions. | $0.01 |
| flight-status | Tracks live aircraft positions from the OpenSky Network. | $0.01 |
| property-tax | Property tax lookup. | $0.01 |
| property-tax-assessment | Searches county assessor records by address or parcel ID for owner, assessed value, and property details. | $0.01 |
| sports-schedule | Returns upcoming games and recent results for major sports leagues: MLB, NBA, NHL, NFL, WNBA, MLS, EPL, La Liga, Bundesliga, and Serie A. | $0.01 |
| weather-current-city | Returns current weather for any city or place name, no coordinates needed. | $0.01 |
SEE ALSO