x402 List

x402 Protocol Service Directory

IPIntel.ai Satellite & GeoRisk API

Data

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.

UPTIME 24H 100% 7D 100% 30D 100%
BASE URL https://sat.ipintel.ai ENDPOINTS 4 NETWORK Base ASSET USDC MEMBER SINCE 2026-07-20 MONITORED SINCE 2026-07-20

ASSESSMENT

updated 4h ago

Evidence-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.

jump to compliance checklist

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-derived

Provides geocoding, satellite imagery, and location risk intelligence services.

category
geocoding-risk
in
body
geocodingsatelliterisk-intelligencelocation-data

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
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
4 endpoints

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.

// request
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

07-20 · uptime 100.0% · 139ms avg07-21 · uptime 100.0% · 87ms avg07-2007-21
RESPONSE TIME
07-20 · 139ms avg07-20 · 139ms avg07-21 · 87ms avg07-21 · 87ms avg07-2007-21
30d UPTIME 100%
UPTIME 30D 100%
AVG RESP 97ms
TOTAL CHECKS 63

RECENT CHECKS

TIME STATUS RESP
● OK 58ms
● OK 41ms
● OK 116ms
● OK 69ms
● OK 52ms
● OK 69ms
● OK 135ms
● OK 64ms
● OK 48ms
● OK 56ms
● OK 87ms
● OK 84ms
● OK 82ms
● OK 95ms
● OK 98ms
● OK 71ms
● SLOW 179ms
● OK 100ms

OVER TIME

All charts share the 30d 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).

PRICE (captured 402, USD)
07-20 · $0.00607-21 · $0.006$0.00607-2007-21

Median across 4 endpoints. Use the selector to isolate one.

SUB-SCORES (uptime + x402 compliance)
07-20 compliance: 100% checks07-21 uptime: 100.0% compliance: 100% checksuptimecompliance07-2007-21
VOLUME (on-chain settlement, USD)
06-21 · $0.0306-22 · $0.0306-23 · $0.0106-24 · $0.0006-25 · $0.0006-26 · $0.0006-27 · $0.0006-28 · $0.0006-29 · $0.0206-30 · $0.0107-01 · $0.0207-02 · $107-03 · $0.9307-04 · $0.1907-05 · $0.3807-06 · $0.0407-07 · $0.0207-08 · $0.0207-09 · $0.0207-11 · $0.0707-12 · $0.0607-13 · $0.0407-14 · $0.0907-15 · $0.0307-16 · $0.0307-17 · $0.0107-18 · $0.03peak $106-2107-18

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.

DISTINCT BUYERS
06-21 · 2 buyers06-22 · 2 buyers06-23 · 3 buyers06-24 · 1 buyer06-25 · 1 buyer06-26 · 1 buyer06-27 · 2 buyers06-28 · 4 buyers06-29 · 19 buyers06-30 · 11 buyers07-01 · 8 buyers07-02 · 12 buyers07-03 · 9 buyers07-04 · 5 buyers07-05 · 6 buyers07-06 · 9 buyers07-07 · 4 buyers07-08 · 5 buyers07-09 · 6 buyers07-11 · 15 buyers07-12 · 15 buyers07-13 · 9 buyers07-14 · 5 buyers07-15 · 8 buyers07-16 · 2 buyers07-17 · 2 buyers07-18 · 2 buyerspeak 19 buyers06-2107-18

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

Show that IPIntel.ai Satellite & GeoRisk API is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

IPIntel.ai Satellite & GeoRisk API listed on x402-list
status
IPIntel.ai Satellite & GeoRisk API uptime on x402-list
live uptime
// HTML
<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>
// Markdown
[![IPIntel.ai Satellite & GeoRisk API on x402-list](https://x402-list.com/badge/ipintel-ai-satellite-georisk-api.svg)](https://x402-list.com/services/ipintel-ai-satellite-georisk-api?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<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>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]