# DopamineDesk IP Reputation & Geolocation Lookup

> DopamineDesk IP Reputation & Geolocation Lookup is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Looks up network context and geolocation data for a given IPv4 or IPv6 address, returning ASN, organization, country, and city.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/ip_reputation
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dopaminedesk-ip-reputation-geolocation-lookup-6b0e46dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V7JKBWmZqwp16IQNArQe2

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 dopaminedesk-ip-reputation-geolocation-lookup-6b0e46dd
```

Example prompt: Can you look up the location and network info for the IP address 203.0.113.42 — I want to know what country and city it's in, and which organization or ASN it belongs to?

## When to prefer this

Choose this endpoint when you need lightweight IP-to-location and IP-to-organization resolution without a full threat/abuse scoring system. It is well-suited for enriching logs, identifying network owners by ASN, or verifying geographic context of an IP. If you need threat scoring, VPN/proxy detection, or abuse reputation signals, look for a dedicated threat intelligence endpoint instead.

## Known failure modes

- Invalid or malformed IP address returns an error or empty result
- Private/reserved IP ranges (e.g. 192.168.x.x) may return no meaningful geolocation data
- Upstream IPWhoIs API unavailability could cause failures
- Rate limiting or payment failures via x402 USDC settlement may block requests

## How this service works

Fetch public IP network, ASN, organization, location, and timezone context. This does not claim an abuse or threat score.

## Output

Returns a JSON object with the queried IP address, resolved city, country, ASN (autonomous system number), organization name, a success boolean, and a note clarifying that this provides network/geolocation context rather than an abuse or threat score.

## 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 analyze."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "source",
      "source_url",
      "fetched_at",
      "note",
      "ip",
      "type",
      "country",
      "region",
      "city",
      "latitude",
      "longitude",
      "connection",
      "timezone",
      "marketplace_metadata"
     ],
     "properties": {
      "ip": {
       "type": "string"
      },
      "city": {
       "type": "string"
      },
      "note": {
       "type": "string"
      },
      "type": {
       "type": "string"
      },
      "region": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "country": {
       "type": "string"
      },
      "success": {
       "type": "boolean"
      },
      "latitude": {
       "type": "number"
      },
      "timezone": {
       "type": "string"
      },
      "longitude": {
       "type": "number"
      },
      "connection": {
       "type": "string"
      },
      "fetched_at": {
       "type": "string"
      },
      "source_url": {
       "type": "string"
      },
      "marketplace_metadata": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ip": "8.8.8.8",
  "city": "San Jose",
  "note": "This endpoint provides network and geolocation context, not an abuse or threat score.",
  "type": "IPv4",
  "region": "California",
  "source": "IPWhoIs public API",
  "country": "United States",
  "success": true,
  "latitude": 37.3361663,
  "timezone": "[object with keys: id, abbr, is_dst, offset, utc; full example in /openapi.json]",
  "longitude": -121.8905913,
  "connection": "[object with keys: asn, org, isp, domain; full example in /openapi.json]",
  "fetched_at": "2026-08-07T07:32:41.029Z",
  "source_url": "https://ipwhois.io/documentation",
  "marketplace_metadata": "[object with keys: data_mode, billable, availability, source; full example in /openapi.json]"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dopaminedesk-ip-reputation-geolocation-lookup-6b0e46dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
