# AgentProbe Domain/IP Lookup

> AgentProbe Domain/IP Lookup is a paid API for AI agents from agentprobe.pythonanywhere.com, paid per call via x402, $0.0015/call, status unknown (last checked 2026-09-14).

Looks up a domain name or public IP address to retrieve associated metadata or intelligence.

## Facts

- Endpoint: GET https://agentprobe.pythonanywhere.com/v1/lookup
- Price: $0.0015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentprobe-domain-ip-lookup-7bdaf728
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kYuySUDgZloh-qSfUciiJ

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 agentprobe-domain-ip-lookup-7bdaf728
```

Example prompt: Can you look up the domain 'example.com' and tell me what you find about it?

## When to prefer this

Use this endpoint when you need a quick, low-cost lookup of a domain name or public IP address and want structured metadata returned. Prefer it over manual DNS tools or heavier threat-intelligence platforms when the query is straightforward and cost-per-call matters.

## Known failure modes

- Invalid or private IP address provided — service only accepts public IPs
- Malformed domain name returns an error or empty result
- Unknown domain or IP with no data returns an empty or null result
- Network timeout if the upstream lookup service is unavailable
- Missing both 'query' and 'domain' parameters returns a bad request error

## How this service works

53 hand-authored, OWASP-mapped adversarial cases (EN+ZH) plus a zero-dependency MIT harness that scores any OpenAI-compatible LLM agent. US$6.99.

## Output

A JSON object containing metadata or intelligence about the queried domain name or public IP address, such as registration details, hosting information, or network attributes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "a domain name or a PUBLIC IP address"
  },
  "domain": {
   "type": "string",
   "description": "alias for query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentprobe-domain-ip-lookup-7bdaf728/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentprobe.pythonanywhere.com](https://www.zero.xyz/host/agentprobe.pythonanywhere.com/llms.txt)
