IPIntel
IPIntel.ai x402 Tools package. Satellite Observation API for satellite imagery from coordinates, radius, mode and date. Supports true color, vegetation, water, thermal and radar modes with cloud-aware fallback. Uses Sentinel/Copernicus data from 2017 to present for earth observation, OSINT, site monitoring and change-over-time analysis.
90000 (raw units)
price
6
calls / 30d
1
unique payers
2026-09-09
updated
Provider
tools.ipintel.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0550779CFBc832657A8BB46BAC9f359A5ad038B8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "90000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"fallback": true,
"lat": 42.6977,
"lon": 23.3219,
"mode": "true_color",
"radius_m": 3000
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"image": {
"clean_url": "https://tools.ipintel.ai/results/satellite/example.png"
},
"mode": "true_color",
"ok": true,
"tool": "satellite"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": true,
"properties": {
"fallback": {
"default": true,
"description": "Allow best available scene fallback.",
"type": "boolean"
},
"lat": {
"description": "Latitude of the observation center.",
"maximum": 90,
"minimum": -90,
"type": "number"
},
"lon": {
"description": "Longitude of the observation center.",
"maximum": 180,
"minimum": -180,
"type": "number"
},
"max_cloud_cover": {
"default": 20,
"description": "Maximum cloud cover for optical modes.",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"mode": {
"default": "true_color",
"description": "Observation mode.",
"enum": [
"true_color",
"vegetation",
"water",
"thermal",
"radar"
],
"type": "string"
},
"radius_m": {
"default": 3000,
"description": "Observation radius in meters.",
"maximum": 5000,
"minimum": 100,
"type": "integer"
}
},
"required": [
"lat",
"lon"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"properties": {
"attribution": {
"type": "string"
},
"available_scenes": {
"additionalProperties": true,
"properties": {
"after": {
"items": {},
"type": "array"
},
"before": {
"items": {},
"type": "array"
},
"selected": {
"additionalProperties": true,
"properties": {},
"type": "object"
}
},
"type": "object"
},
"fulfillment_status": {
"type": "string"
},
"image": {
"additionalProperties": true,
"properties": {
"annotated_url": {
"type": "string"
},
"clean_url": {
"type": "string"
},
"format": {
"type": "string"
}
},
"type": "object"
},
"mode": {
"type": "string"
},
"ok": {
"type": "boolean"
},
"request": {
"additionalProperties": true,
"properties": {
"date": {
"type": "string"
},
"date_tolerance_days": {
"type": "integer"
},
"lat": {
"type": "number"
},
"lon": {
"type": "number"
},
"max_cloud_cover": {
"type": "integer"
},
"radius_m": {
"type": "integer"
}
},
"type": "object"
},
"selected_scene": {
"additionalProperties": true,
"properties": {
"cloud_cover": {
"type": "integer"
},
"date": {
"type": "string"
},
"datetime": {
"type": "string"
},
"scene_id": {
"type": "string"
},
"selection_reason": {
"type": "string"
},
"source": {
"type": "string"
}
},
"type": "object"
},
"statistics": {
"additionalProperties": true,
"properties": {
"index": {
"type": "string"
},
"mndwi_mean": {
"type": "number"
},
"ndwi_mean": {
"type": "number"
},
"no_data_count": {
"type": "integer"
},
"resolution_m": {
"type": "integer"
},
"sample_count": {
"type": "integer"
},
"secondary_index": {
"type": "string"
},
"type": {
"type": "string"
},
"water_coverage_percent": {
"type": "number"
}
},
"type": "object"
},
"tool": {
"type": "string"
},
"warnings": {
"items": {},
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://tools.ipintel.ai/satellite" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://tools.ipintel.ai/satellite");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://tools.ipintel.ai/satellite")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3005.json, and this resource appears in /discovery/resources and /discovery/search.