{
  "x402Version": 2,
  "id": 3005,
  "slug": "3005",
  "resource": "https://tools.ipintel.ai/satellite",
  "description": "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.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x0550779CFBc832657A8BB46BAC9f359A5ad038B8",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "90000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "tools.ipintel.ai",
  "lastUpdated": "2026-09-09T09:01:50.787Z",
  "quality": {
    "calls30d": 6,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-09T09:01:50.322Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "tools.ipintel.ai",
    "manifest_name": "tools.ipintel.ai",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}