Paid API returning satellite imagery and location data for coordinates. Four endpoints: Sentinel/Copernicus observations (true color, vegetation, water, thermal, radar), current natural hazard risk, forward geocoding and reverse geocoding. JSON responses, with PNG URLs for imagery.
Pay from $0.002 to $0.03 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.
ASSESSMENT
updated 4h agoEvidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.
reliability 100%
- uptime 24h
- 100%
- uptime 7d
- 100%
- uptime 30d
- 100%
- uptime 90d
- 100%
- response p95
- 196ms
- avg response
- 105ms
- total checks
- 47
compliance A (11/11)
11 of 11 x402 conformance checks pass. Full checklist below.
price $0.002 to $0.03 (p31 in Data)
- price (min)
- $0.002
- price (max)
- $0.03
- category percentile (min)
- p31 in Data
- category percentile (max)
- p55 in Data
- endpoints / prices
- 4 / 3
- model
- tiered
- stability
- 100%
risk clean
No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.
traction $1.05 30d · 35 buyers
- volume 30d
- $1.05
- buyers 30d
- 35
- settlements 30d
- 114
- last settlement
- 2026-07-18
- top buyer share
- 80% of 30d volume
- trend 7d vs 30d
- 0.20x the 30d daily rate
- networks
- eip155:8453
Attributed pro-quota: this payout address is shared, so volume and buyers are the operator-level figure divided by the services sharing it. A declared convention, not an individually observed measure, and still a conservative undercount.
Top buyer share is a concentration signal, not part of the ranking score.
WHAT IT DOES
ai-derivedProvides geocoding, satellite imagery, and location risk intelligence services.
- category
- geocoding-risk
- in
- body
AI-generated summary. The measured data is never altered by it.
ENDPOINTS
| METHOD | PATH | DESCRIPTION | PRICE | NETWORK | ASSET |
|---|---|---|---|---|---|
| POST | /address-to-coordinates | $0.002 | Base | USDC | |
| POST | /coordinates-to-address | $0.002 | Base | USDC | |
| POST | /location-risk | $0.01 | Base | USDC | |
| POST | /satellite-observe | $0.03 | Base | USDC |
REQUEST / RESPONSE EXAMPLE
An unpaid request to POST /address-to-coordinates returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.
curl -i -X POST 'https://sat.ipintel.ai/address-to-coordinates'
// 402 response (captured by monitor) · 4 payloads · click to expand
[
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x0550779CFBc832657A8BB46BAC9f359A5ad038B8",
"amount": "25000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://sat.ipintel.ai/satellite-observe",
"tags": [
"satellite",
"sentinel",
"copernicus",
"imagery",
"radar",
"vegetation",
"water",
"earth-observation"
],
"iconUrl": "https://sat.ipintel.ai/favicon.svg",
"mimeType": "application/json",
"description": "Agent-ready satellite observations for any coordinates. Returns PNG image URLs and scene metadata for true color, vegetation, water, thermal, or radar analysis.",
"serviceName": "Satellite & GeoRisk x402 API"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"lat": 25.2048,
"lon": 55.2708,
"mode": "true_color",
"radius_m": 3000,
"max_cloud_cover": 20,
"date_tolerance_days": 10
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"ok": true,
"mode": "true_color",
"tool": "satellite-observe",
"image": {
"format": "png",
"clean_url": "https://sat.ipintel.ai/results/satellite/example.png",
"annotated_url": "https://sat.ipintel.ai/results/satellite/example_annotated.png"
},
"attribution": "Satellite imagery data",
"selected_scene": {
"date": "2026-07-10",
"source": "Sentinel-2 L2A",
"cloud_cover": 4.2
},
"fulfillment_status": "exact"
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"type": "object",
"required": [
"lat",
"lon"
],
"properties": {
"lat": {
"type": "number",
"maximum": 90,
"minimum": -90
},
"lon": {
"type": "number",
"maximum": 180,
"minimum": -180
},
"date": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"description": "Optional preferred acquisition date in YYYY-MM-DD format."
},
"mode": {
"enum": [
"true_color",
"vegetation",
"water",
"thermal",
"radar"
],
"type": "string",
"default": "true_color"
},
"orbit": {
"enum": [
"ASCENDING",
"DESCENDING"
],
"type": "string",
"default": "ASCENDING",
"description": "Sentinel-1 orbit direction for radar mode."
},
"radius_m": {
"type": "integer",
"default": 3000,
"maximum": 50000,
"minimum": 500
},
"max_cloud_cover": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 0,
"description": "Optical modes only. Radar is cloud-independent."
},
"date_tolerance_days": {
"type": "integer",
"default": 10,
"maximum": 60,
"minimum": 1
}
},
"additionalProperties": false
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"ok",
"tool"
],
"properties": {
"ok": {
"type": "boolean"
},
"mode": {
"type": "string"
},
"tool": {
"type": "string",
"const": "satellite-observe"
},
"image": {
"type": "object",
"properties": {
"format": {
"type": "string",
"const": "png"
},
"clean_url": {
"type": "string"
},
"annotated_url": {
"type": "string"
}
},
"additionalProperties": true
},
"warnings": {
"type": "array",
"items": {
"type": "string"
}
},
"attribution": {
"type": "string"
},
"selected_scene": {
"type": "object",
"additionalProperties": true
},
"fulfillment_status": {
"type": "string"
}
},
"additionalProperties": true
}
}
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x0550779CFBc832657A8BB46BAC9f359A5ad038B8",
"amount": "10000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://sat.ipintel.ai/location-risk",
"tags": [
"georisk",
"natural-disaster",
"wildfire",
"earthquake",
"flood",
"cyclone",
"volcano",
"drought",
"location-risk"
],
"iconUrl": "https://sat.ipintel.ai/favicon.svg",
"mimeType": "application/json",
"description": "Current multi-hazard intelligence for any coordinates. Finds nearby wildfire, earthquake, flood, tropical cyclone, volcano, and drought signals and returns compact deterministic risk scores without generating satellite images.",
"serviceName": "Satellite & GeoRisk x402 API"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"lat": 13.7713,
"lon": 120.6627,
"top_events_limit": 8
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"ok": true,
"tool": "location-risk",
"hazards": {
"wildfire": {
"level": "medium",
"score": 38,
"radius_km": 50,
"nearest_km": 12.4,
"window_days": 5,
"evidence_count": 7
},
"earthquake": {
"level": "low",
"score": 20,
"radius_km": 300,
"window_days": 7,
"max_magnitude": 3.8,
"evidence_count": 2
}
},
"location": {
"lat": 13.7713,
"lon": 120.6627
},
"overall_risk": {
"level": "medium",
"score": 42,
"primary_hazard": "wildfire",
"secondary_hazard_boost": 4
},
"active_hazard_count": 2,
"satellite_images_included": false
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"type": "object",
"required": [
"lat",
"lon"
],
"properties": {
"lat": {
"type": "number",
"maximum": 90,
"minimum": -90
},
"lon": {
"type": "number",
"maximum": 180,
"minimum": -180
},
"days": {
"type": "integer",
"maximum": 365,
"minimum": 1,
"description": "Optional global time-window override. Otherwise hazard-specific windows are used."
},
"hazards": {
"type": "array",
"items": {
"enum": [
"wildfire",
"earthquake",
"flood",
"tropical_cyclone",
"volcano",
"drought"
],
"type": "string"
},
"minItems": 1,
"description": "Optional subset. All supported hazards are checked by default.",
"uniqueItems": true
},
"radius_km": {
"type": "number",
"maximum": 1000,
"minimum": 1,
"description": "Optional global radius override. Otherwise hazard-specific radii are used."
},
"event_limit": {
"type": "integer",
"default": 50,
"maximum": 200,
"minimum": 1
},
"top_events_limit": {
"type": "integer",
"default": 12,
"maximum": 50,
"minimum": 1
}
},
"additionalProperties": false
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"ok",
"tool",
"location",
"overall_risk",
"hazards",
"satellite_images_included"
],
"properties": {
"ok": {
"type": "boolean",
"const": true
},
"tool": {
"type": "string",
"const": "location-risk"
},
"hazards": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": true
}
},
"location": {
"type": "object",
"required": [
"lat",
"lon"
],
"properties": {
"lat": {
"type": "number"
},
"lon": {
"type": "number"
}
}
},
"generated_at": {
"type": "string"
},
"overall_risk": {
"type": "object",
"required": [
"score",
"level",
"primary_hazard",
"secondary_hazard_boost"
],
"properties": {
"level": {
"enum": [
"none",
"low",
"medium",
"high",
"severe"
],
"type": "string"
},
"score": {
"type": "integer",
"maximum": 100,
"minimum": 0
},
"primary_hazard": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"secondary_hazard_boost": {
"type": "integer",
"minimum": 0
}
},
"additionalProperties": false
},
"top_nearby_events": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"active_hazard_count": {
"type": "integer",
"minimum": 0
},
"satellite_images_included": {
"type": "boolean",
"const": false
}
},
"additionalProperties": true
}
}
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x0550779CFBc832657A8BB46BAC9f359A5ad038B8",
"amount": "2000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://sat.ipintel.ai/coordinates-to-address",
"tags": [
"reverse-geocoding",
"coordinates",
"address",
"latitude",
"longitude",
"location"
],
"iconUrl": "https://sat.ipintel.ai/favicon.svg",
"mimeType": "application/json",
"description": "Worldwide reverse geocoding for agents. Convert latitude and longitude into a normalized address, locality, administrative area, postcode, and country metadata.",
"serviceName": "Satellite & GeoRisk x402 API"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"lat": 48.8584,
"lon": 2.2945,
"language": "en"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"ok": true,
"tool": "coordinates-to-address",
"cached": false,
"result": {
"lat": 48.8584,
"lon": 2.2945,
"city": "Paris",
"country_code": "FR",
"formatted_address": "Eiffel Tower, 5 Avenue Anatole France, 75007 Paris, France"
},
"provider": "geoapify"
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"type": "object",
"required": [
"lat",
"lon"
],
"properties": {
"lat": {
"type": "number",
"maximum": 90,
"minimum": -90
},
"lon": {
"type": "number",
"maximum": 180,
"minimum": -180
},
"type": {
"enum": [
"country",
"state",
"city",
"postcode",
"street",
"amenity"
],
"type": "string"
},
"language": {
"type": "string",
"maxLength": 12,
"minLength": 2,
"description": "Preferred response language."
}
},
"additionalProperties": false
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"ok",
"tool",
"result"
],
"properties": {
"ok": {
"type": "boolean",
"const": true
},
"tool": {
"type": "string",
"const": "coordinates-to-address"
},
"cached": {
"type": "boolean"
},
"result": {
"anyOf": [
{
"type": "null"
},
{
"type": "object",
"required": [
"lat",
"lon"
],
"properties": {
"lat": {
"type": "number"
},
"lon": {
"type": "number"
},
"city": {
"type": "string"
},
"country_code": {
"type": "string"
},
"formatted_address": {
"type": "string"
}
},
"additionalProperties": true
}
]
}
},
"additionalProperties": true
}
}
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x0550779CFBc832657A8BB46BAC9f359A5ad038B8",
"amount": "2000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://sat.ipintel.ai/address-to-coordinates",
"tags": [
"geocoding",
"address",
"coordinates",
"latitude",
"longitude",
"maps",
"location"
],
"iconUrl": "https://sat.ipintel.ai/favicon.svg",
"mimeType": "application/json",
"description": "Worldwide forward geocoding for agents. Convert an address, landmark, city, postcode, or place name into latitude and longitude with normalized address components and confidence metadata.",
"serviceName": "Satellite & GeoRisk x402 API"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"limit": 1,
"address": "Eiffel Tower, Paris, France",
"language": "en",
"country_code": "fr"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"ok": true,
"tool": "address-to-coordinates",
"cached": false,
"results": [
{
"lat": 48.8584,
"lon": 2.2945,
"confidence": 0.99,
"country_code": "FR",
"formatted_address": "Eiffel Tower, 5 Avenue Anatole France, 75007 Paris, France"
}
],
"provider": "geoapify",
"match_count": 1
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"type": "object",
"required": [
"address"
],
"properties": {
"limit": {
"type": "integer",
"default": 1,
"maximum": 5,
"minimum": 1
},
"address": {
"type": "string",
"maxLength": 500,
"minLength": 3,
"description": "Free-form place or postal address."
},
"language": {
"type": "string",
"maxLength": 12,
"minLength": 2,
"description": "Preferred response language, for example en or es."
},
"country_code": {
"type": "string",
"maxLength": 2,
"minLength": 2,
"description": "Optional ISO 3166-1 alpha-2 country filter."
}
},
"additionalProperties": false
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"ok",
"tool",
"match_count",
"results"
],
"properties": {
"ok": {
"type": "boolean",
"const": true
},
"tool": {
"type": "string",
"const": "address-to-coordinates"
},
"cached": {
"type": "boolean"
},
"results": {
"type": "array",
"items": {
"type": "object",
"required": [
"lat",
"lon"
],
"properties": {
"lat": {
"type": "number"
},
"lon": {
"type": "number"
},
"confidence": {
"type": "number"
},
"country_code": {
"type": "string"
},
"formatted_address": {
"type": "string"
}
},
"additionalProperties": true
}
},
"match_count": {
"type": "integer",
"minimum": 0
}
},
"additionalProperties": true
}
}
}
}
}
}
},
"x402Version": 2
}
] UPTIME
RECENT CHECKS
OVER TIME
All charts share the 90d window selected here. Every series is also served as JSON at /api/v1/services/ipintel-ai-satellite-georisk-api/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted).
Median across 4 endpoints. Use the selector to isolate one.
Shared payout address (2 other services). These bars are the full shared address (operator-level), so do not sum them across the services that share it. Where a per-service figure is attributed, the assessment block and the ranking, it is the address total divided pro-quota by the 3 services sharing it: a declared convention, not an individually observed measure.
Shared payout address (2 other services). These bars are the full shared address (operator-level), so do not sum them across the services that share it. Where a per-service buyer count is attributed, the assessment block and the ranking, it is divided pro-quota by the 3 services sharing the address and can be fractional: a declared convention, not an individually observed measure.
COMPLIANCE
11/11 checks pass · grade A- 402 payload captured
- accepts[] array present
- payTo address recoverable
- payTo at accepts[0].payTo (conformant shape)
- payTo is a valid on-chain address
- atomic price declared
- atomic price in a sane range
- asset (token) address declared
- network resolves to CAIP-2
- payment scheme declared
- served over HTTPS
EMBED THIS BADGE
<a href="https://x402-list.com/services/ipintel-ai-satellite-georisk-api?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/ipintel-ai-satellite-georisk-api.svg" alt="IPIntel.ai Satellite & GeoRisk API listed on x402-list" height="28"> </a>
[](https://x402-list.com/services/ipintel-ai-satellite-georisk-api?utm_source=badge&utm_medium=referral&utm_campaign=embed)
<a href="https://x402-list.com/services/ipintel-ai-satellite-georisk-api?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/ipintel-ai-satellite-georisk-api.svg?data=uptime" alt="IPIntel.ai Satellite & GeoRisk API uptime on x402-list" height="28"> </a>