Threat IP lookup
Threat IP lookup: supply a single IPv4/IPv6 address and receive a sanitized dossier when the address is in our ledger, or a negative match with network flags when it is not. Billing uses the x402 `upto` scheme — buyers authorize up to $0.02; settled charge is $0.02 on ledger match, $0.001 on miss or invalid input. EVM `upto` facilitators only (Permit2 + facilitatorAddress). Responses expose opaque threat class labels, coarse confidence, timing/counts, and ip-api mobile/proxy/hosting flags —…
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://war-tracker.com/api/v1/threat-ips/lookup
| Category | Everything else |
|---|---|
| Provider host | war-tracker.com |
| Networks | eip155:137, eip155:8453 |
| Payment schemes | upto |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 1253 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"ip": "8.8.8.8"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"ip": {
"description": "IPv4 or IPv6 address to look up.",
"type": "string"
}
},
"required": [
"ip"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"classes": {
"description": "Opaque buyer-facing class labels (hit only).",
"items": {
"type": "string"
},
"type": "array"
},
"confidence": {
"enum": [
"high",
"medium",
"low"
],
"type": "string"
},
"country": {
"type": "string"
},
"error": {
"enum": [
"invalid_ip"
],
"type": "string"
},
"first_seen": {
"format": "date-time",
"type": "string"
},
"hit_count": {
"minimum": 0,
"type": "integer"
},
"hosting": {
"type": "boolean"
},
"invalid": {
"type": "boolean"
},
"ip": {
"type": "string"
},
"last_seen": {
"format": "date-time",
"type": "string"
},
"licensing": {
"type": "string"
},
"matched": {
"type": "boolean"
},
"mobile": {
"type": "boolean"
},
"proxy": {
"type": "boolean"
}
},
"required": [
"matched",
"licensing"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}