# NetIntel IP Risk Scorer

> NetIntel IP Risk Scorer is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns a comprehensive risk profile for an IP address including geolocation, ASN, DNSBL blacklist status, proxy/VPN/hosting classification, and an aggregated risk score with block/allow recommendation.

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/ip-risk/score
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-ip-risk-scorer-a4d1ff84
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mRcyc-maOe_zg2sAGu4RO

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-ip-risk-scorer-a4d1ff84
```

Example prompt: Can you run a full risk check on the IP address 185.220.101.47 — I want to know if it's a VPN or proxy, whether it's blacklisted on any DNSBLs, where it's located, who owns it, and whether I should block it?

## When to prefer this

Choose this endpoint when you need a single aggregated verdict on an IP address that combines geolocation, network ownership, blacklist reputation, and proxy/VPN/hosting classification in one call — instead of querying four separate IP intelligence APIs. Ideal for fraud prevention, access control decisions, and security triage pipelines.

## Known failure modes

- Private or reserved IP ranges (e.g. 10.x.x.x, 192.168.x.x) are rejected with an error
- Invalid or malformed IP address string returns a validation error
- DNSBL upstream timeouts may result in partial blacklist data
- IPv6 addresses may have reduced geolocation accuracy
- Rate limiting or payment failure returns 402

## How this service works

One call returns a complete risk profile for an IP address — geolocation, ASN/network owner, blacklist status across multiple DNSBLs, and proxy/VPN/hosting classification — aggregated into a single verdict so agents can make a block/allow decision without calling four separate IP endpoints.

## Output

Returns a structured risk profile containing: IP geolocation (country, city, coordinates), ASN and network owner details, blacklist check results across multiple DNSBLs, proxy/VPN/hosting classification flags, individual findings array, an overall numeric risk_score, a letter grade, and a plain-language recommendation (block/allow/review).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ip": "8.8.8.8"
  }
 }
}
```

## 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",
     "required": [
      "ip"
     ],
     "properties": {
      "ip": {
       "type": "string",
       "description": "IPv4 or IPv6 address to risk-score (private/reserved ranges are rejected; DNSBL blacklist checks are IPv4-only and are skipped for IPv6 with a blacklist_skipped_ipv6 finding)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ip": {
       "type": "string"
      },
      "geo": {
       "type": "object"
      },
      "grade": {
       "type": "string"
      },
      "network": {
       "type": "object"
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "blacklist": {
       "type": "object"
      },
      "risk_score": {
       "type": "number",
       "description": "deprecated alias of trust_score"
      },
      "trust_score": {
       "type": "number",
       "description": "0-100, higher = cleaner/safer"
      },
      "recommendation": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ip": "8.8.8.8",
  "geo": {
   "isp": "Google LLC",
   "city": "Ashburn",
   "country": "United States",
   "is_proxy": false,
   "timezone": "America/New_York",
   "available": true,
   "is_mobile": false,
   "is_hosting": true,
   "country_code": "US"
  },
  "grade": "B",
  "network": {
   "asn": "AS15169",
   "available": true,
   "organization": "Google LLC",
   "classification": "cloud"
  },
  "findings": [
   {
    "rule": "is_cloud",
    "detail": "IP belongs to known cloud provider (Google LLC)",
    "deduction": -20
   }
  ],
  "blacklist": {
   "available": true,
   "listed_on": [],
   "listed_count": 0,
   "lists_checked": 8
  },
  "risk_score": 80,
  "trust_score": 80,
  "recommendation": "allow"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-ip-risk-scorer-a4d1ff84/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
