# Suverse RIPEstat Routing History

> Suverse RIPEstat Routing History is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns historic BGP routing announcements for a given IP prefix or ASN, including which ASNs originated it over time with first-seen and last-seen timestamps.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ripe-routing-history
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-ripestat-routing-history-b53d6b03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XlNZiho_pzIoXR_ysarw5

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability suverse-ripestat-routing-history-b53d6b03 -d '<json body>'
```

Example prompt: Can you pull up the full BGP routing history for the prefix 185.220.101.0/24 and show me all the ASNs that have ever originated it, along with when they first and last appeared? I want to check if there have been any suspicious origin changes.

## When to prefer this

Use this endpoint when you need historical BGP routing data specifically — particularly for detecting origin changes, investigating potential prefix hijacks, or auditing the routing lineage of an IP block or ASN over time. It is backed by RIPEstat's authoritative dataset and requires no API key, making it simple to call. Prefer this over generic WHOIS or IP lookup tools when you specifically need time-series BGP origin data rather than just current routing state.

## Known failure modes

- Invalid or malformed IP prefix returns an error or empty result
- ASN not found in RIPEstat database returns empty history
- Upstream RIPEstat API unavailability causes timeout or 5xx error
- Very recent announcements may not yet be indexed
- Payment failure results in 402 response before query is processed

## How this service works

Historic BGP announcements for a prefix or ASN from RIPEstat: which ASNs originated it over time with first and last seen timestamps. Useful for hijack and origin-change checks. Keyless.

## Output

Returns a list of historic BGP routing records for the queried prefix or ASN, including each originating ASN, the first-seen and last-seen timestamps for each announcement, and a timeline of routing origin changes sourced from RIPEstat's routing history data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-ripestat-routing-history-b53d6b03/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
