# Agent Micro IP Info

> Agent Micro IP Info is a paid API for AI agents from agent-micro.annushka1190.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Returns geolocation, ASN, and network intelligence data for an IP address, paid per-call via USDC micropayment

## Facts

- Endpoint: GET https://agent-micro.annushka1190.workers.dev/v1/ip/info
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-micro-ip-info-ce7a7f50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yIPUMWKoW8mvbgrKIn7A3

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 agent-micro-ip-info-ce7a7f50
```

Example prompt: Look up the geolocation and network details for the IP address 203.0.113.42 — I want to know what country, city, and ISP it belongs to.

## When to prefer this

Choose this endpoint when you need lightweight, pay-per-use IP geolocation and network intelligence without a subscription, especially in agent workflows that occasionally need to enrich an IP address with location or ASN data and want to pay fractions of a cent per lookup in USDC via x402.

## Known failure modes

- Invalid or private IP address returns an error or empty result
- Missing required query parameter causes a 400-level error
- Payment not provided or insufficient USDC causes a 402 Payment Required response
- Rate limiting or quota exceeded returns a 429 error
- Cloudflare Worker downtime results in a 503 error

## How this service works

Advanced micro-tools for AI agents: cryptographic randomness, text analysis, math helpers, date arithmetic, web metadata, and IP intelligence. All under $0.01 per request, paid in USDC via x402.

## Output

A JSON object with `ok: true` plus geolocation and network intelligence fields for the queried IP address, likely including country, region, city, latitude/longitude, ASN number, ISP name, and possibly proxy/datacenter flags.

## 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": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-micro-ip-info-ce7a7f50/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-micro.annushka1190.workers.dev](https://www.zero.xyz/host/agent-micro.annushka1190.workers.dev/llms.txt)
