RIPE Stat

live NetworkThreat Intel

IP / ASN / BGP intel — whois, geolocation, abuse contacts, AS neighbours. No auth.

8 tools
0ms auth
free tier 50 calls/day

Tools

whois required: resource

Whois data for IP/prefix/ASN.

Parameters
Name Type Description
resource req string IP, prefix, or AS number
Try it
network_info required: resource

Network info (prefix + ASN) for an IP.

Parameters
Name Type Description
resource req string
Try it
as_overview required: asn

ASN summary.

Parameters
Name Type Description
asn req string
Try it
asn_neighbours required: asn

BGP neighbours of an AS.

Parameters
Name Type Description
asn req string
Try it
bgp_state required: resource

Current BGP routing state for a resource.

Parameters
Name Type Description
resource req string
Try it
abuse_contact required: resource

Abuse contact email(s) for a resource.

Parameters
Name Type Description
resource req string
Try it
geoloc required: resource

Country geolocation of an IP/prefix.

Parameters
Name Type Description
resource req string
Try it
prefix_overview required: resource

Comprehensive prefix overview.

Parameters
Name Type Description
resource req string
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/ripe-stat/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/ripe-stat/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"whois","arguments":{"resource": "example"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("whois", {"resource":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("ip / asn / bgp intel — whois, geolocation, abuse contacts, as neighbours");