# Cyber Intel API - IP Threat Intelligence Lookup

> Cyber Intel API - IP Threat Intelligence Lookup is a paid API for AI agents from cyber-intel-api-production-a3c1.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up an IP address and returns cybersecurity threat intelligence including abuse confidence score, country, and total abuse reports, powered by AbuseIPDB and Claude AI

## Facts

- Endpoint: GET https://cyber-intel-api-production-a3c1.up.railway.app/api/ip/%7Bip%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cyber-intel-api-ip-threat-intelligence-lookup-2f29ef09
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1lGVm7Jpdaw2FbrHmvMp6

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 cyber-intel-api-ip-threat-intelligence-lookup-2f29ef09
```

Example prompt: Can you check whether the IP address 118.25.6.39 is malicious? I want to see its abuse confidence score, how many times it's been reported, and what country it's from.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call threat intelligence check on a specific IP address and want both raw AbuseIPDB data and AI-enriched context. Ideal for real-time security workflows, incident response triage, or firewall rule validation where you need an instant abuse reputation score without a subscription to a full threat intel platform.

## Known failure modes

- Invalid IP address format returns an error
- Private/reserved IP addresses may return limited or no data
- AbuseIPDB API downtime causes lookup failure
- Rate limits exceeded returns 429 error
- IP not found in database returns zero reports and null confidence score

## How this service works

Cybersecurity threat intelligence powered by AbuseIPDB and Claude AI

## Output

Returns a JSON object with the queried IP address, its two-letter country code, the total number of abuse reports submitted against it, and an abuse confidence score from 0–100 (100 meaning near-certain malicious activity), enriched with AI-powered analysis.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ipAddress": "118.25.6.39",
  "countryCode": "CN",
  "totalReports": 642,
  "abuseConfidenceScore": 100
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cyber-intel-api-ip-threat-intelligence-lookup-2f29ef09/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cyber-intel-api-production-a3c1.up.railway.app](https://www.zero.xyz/host/cyber-intel-api-production-a3c1.up.railway.app/llms.txt)
