# ASN Info Lookup

> ASN Info Lookup is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the name, country, regional registry, allocation date, and RDAP record for a given Autonomous System Number (ASN).

## Facts

- Endpoint: GET https://intel.rallylive.ca/ip/asn-info
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/asn-info-lookup-e8824565
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oiC-jFHMR4A5FWOPL8BuL

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 asn-info-lookup-e8824565
```

Example prompt: Who owns ASN 15169? I need the organization name, country, regional internet registry, and allocation date.

## When to prefer this

Use this endpoint when you need to identify who operates a specific autonomous system number seen in BGP routing data, firewall logs, threat intelligence feeds, or network diagnostics. It combines Team Cymru's authoritative ASN-to-organization mapping with RDAP data, making it more complete than a plain whois lookup. Prefer it over generic IP lookup endpoints when your input is an ASN rather than an IP address.

## Known failure modes

- Invalid or non-existent ASN returns an error or empty result
- ASN not yet allocated returns no registry data
- RDAP record unavailable for some legacy ASNs
- Rate limiting or payment failure blocks the request

## How this service works

ASN lookup: the name, country, regional registry and allocation date of an autonomous system (Team Cymru), plus the RDAP record with the owning organization. Identify who operates a network number seen in logs or BGP data. $0.01 per ASN.

## Output

Returns structured data about the ASN including: the AS name, country of registration, regional internet registry (e.g. ARIN, RIPE, APNIC), allocation date (from Team Cymru), and the full RDAP record identifying the owning organization.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/asn-info-lookup-e8824565/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
