# netintel-asn-meta

> netintel-asn-meta is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns registry and routing metadata for a given Autonomous System Number (ASN), including name, RIR, country, allocation date, hosting classification, and prefix count.

## Facts

- Endpoint: GET https://payai.agentstools.dev/netintel/asn
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-asn-meta-f0e9aae8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__aTLCWKO_e6xe-y8fbnOn

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 netintel-asn-meta-f0e9aae8
```

Example prompt: Look up the registry and routing metadata for AS15169 — I need to know who operates it, which RIR allocated it, the country, its hosting classification, and how many prefixes it announces.

## When to prefer this

Use this endpoint when you need structured registry and routing metadata about a specific ASN — particularly when you need RIR, country, allocation date, hosting classification, and prefix count in a single call. Prefer this over raw WHOIS queries when you need a clean, parsed response suitable for downstream automation or enrichment pipelines.

## Known failure modes

- Invalid or non-existent ASN returns an error or empty result
- ASN prefix not normalized (e.g. 'AS' prefix missing) may cause parse errors if not handled
- Very recently allocated ASNs may not yet appear in registry data
- Rate limiting or payment failure returns 402 or 429 status

## How this service works

Returns network intelligence for an autonomous system number (ASN).

## Output

Returns a structured object containing the AS name/operator, the Regional Internet Registry (RIR) that allocated it (e.g. ARIN, RIPE, APNIC), the country of registration, allocation date and status, a datacenter/hosting/ISP classification flag, and the count of BGP prefixes announced by the AS.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "asn"
     ],
     "properties": {
      "asn": {
       "type": "string",
       "description": "Autonomous system number, with or without an AS prefix"
      }
     }
    }
   },
   "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/netintel-asn-meta-f0e9aae8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
