# Suverse RIPE Abuse Contact Lookup

> Suverse RIPE Abuse Contact Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns the registered abuse-reporting contact for an IP address, IP prefix, or ASN by querying RIPEstat, including the authoritative RIR and matched resource.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ripe-abuse-contact
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-ripe-abuse-contact-lookup-a8101fa8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NyFS3OAZsG_gDW2pE6qhg

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-ripe-abuse-contact-lookup-a8101fa8 -d '<json body>'
```

Example prompt: Look up the registered abuse contact and authoritative RIR for the IP address 198.51.100.42 — I need to know who to report network abuse to.

## When to prefer this

Use this endpoint when you need to programmatically resolve the authoritative abuse contact for any IP, prefix, or ASN without requiring an API key. It is ideal for automated abuse reporting pipelines, security incident response workflows, or spam-fighting tools that need to route complaints to the correct network operator or RIR. Prefer this over manual WHOIS lookups or direct RIPEstat queries when you want a clean, structured response in an agent workflow.

## Known failure modes

- No abuse contact registered in RIPEstat for the given resource — returns empty or null contact
- Invalid IP, prefix format, or ASN causes a parsing or validation error
- RIPEstat API unavailability results in a timeout or upstream error
- Private or reserved IP ranges may not have RIR-registered abuse contacts
- Malformed input (e.g. non-existent ASN) returns no match

## How this service works

Registered abuse-reporting contact for an IP, prefix or ASN via RIPEstat, with the authoritative RIR and the resource matched. Pass an IP, prefix or AS number. Keyless.

## Output

Returns the registered abuse contact email address(es) for the queried IP, prefix, or ASN, along with the authoritative Regional Internet Registry (RIR) responsible for the resource and the specific matched resource identifier.

## 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-ripe-abuse-contact-lookup-a8101fa8/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)
