# NetIntel IP Full Report

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

Returns a comprehensive intelligence profile for an IP address, including geolocation, ASN/network classification, blacklist status, abuse reputation, and an overall risk grade.

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/ip-report/full
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-ip-full-report-1e65e9b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A_rgwE9Co9K5JK_j0cdWL

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-full-report-1e65e9b4
```

Example prompt: Can you run a full intelligence report on IP address 203.0.113.47 — I want to see its risk grade, whether it's blacklisted, its geolocation, ASN, and whether I should block or allow it?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-dimensional IP intelligence report in a single call — covering geo, ASN, blacklist, and abuse reputation together with a synthesized risk grade and allow/block recommendation. Prefer this over narrower IP lookup tools when you need holistic threat assessment rather than just a single data point like geolocation or blacklist status alone.

## Known failure modes

- Private or reserved IP ranges (e.g. 192.168.x.x, 10.x.x.x) are rejected with an error
- Invalid IP address format returns a validation error
- Payment not provided or insufficient USDC results in HTTP 402
- One or more intelligence sub-sections may fail (sections_failed > 0) while others succeed
- Rate limiting or upstream data source unavailability may degrade results

## How this service works

One premium call returns a complete five-part IP profile — geolocation, ASN/network ownership, multi-DNSBL blacklist status, threat reputation, and an aggregate risk verdict — run concurrently with graceful partial-failure handling, so agents get a full IP workup and a block/allow decision in a single request.

## Output

A JSON object containing the queried IP, a letter grade (e.g. 'B'), a numeric risk score (0-100), a list of findings, and a sections object with geo (city, country, ISP, timezone), risk (risk_score, recommendation), network (ASN, organization, classification), blacklist (listed_on, listed_count, lists_checked), and reputation (otx_pulses, abuse_confidence) sub-reports, plus overall_recommendation ('allow'/'block'/etc.), section success/failure counts, and a generated_at timestamp.

## 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 profile (private/reserved ranges are rejected; the blacklist section is IPv4-only and reports error:\"ipv4_only\" for IPv6 input)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ip": {
       "type": "string"
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "sections": {
       "type": "object"
      },
      "sections_ok": {
       "type": "number"
      },
      "generated_at": {
       "type": "string"
      },
      "sections_failed": {
       "type": "number"
      },
      "overall_recommendation": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ip": "8.8.8.8",
  "grade": "B",
  "score": 80,
  "findings": [
   {
    "rule": "is_proxy_or_hosting",
    "detail": "Network classified as cloud infrastructure",
    "deduction": -20
   }
  ],
  "sections": {
   "geo": {
    "isp": "Google LLC",
    "city": "Mountain View",
    "country": "United States",
    "timezone": "America/Los_Angeles",
    "available": true
   },
   "risk": {
    "available": true,
    "risk_score": 80,
    "trust_score": 80,
    "recommendation": "allow"
   },
   "network": {
    "asn": "AS15169",
    "available": true,
    "organization": "Google LLC",
    "classification": "cloud"
   },
   "blacklist": {
    "available": true,
    "listed_on": [],
    "listed_count": 0,
    "lists_checked": 15
   },
   "reputation": {
    "available": true,
    "otx_pulses": 0,
    "abuse_confidence": 0
   }
  },
  "sections_ok": 5,
  "generated_at": "2026-06-16T01:00:00Z",
  "sections_failed": 0,
  "overall_recommendation": "allow"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-ip-full-report-1e65e9b4/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)
