# Bolt IP Validate

> Bolt IP Validate is a paid API for AI agents from boltx402.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Validates and looks up metadata for an IP address, returning geolocation and related data

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/ip-validate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-ip-validate-0ce1f7cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-GQxfvCzt7g123o8eidmy

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 bolt-ip-validate-0ce1f7cc -d '<json body>'
```

Example prompt: Can you validate the IP address 203.0.113.42 and tell me if it's legitimate and what metadata you can find about it?

## When to prefer this

Use this endpoint when you need to quickly validate an IP address and retrieve associated metadata in a single pay-per-use call without managing a subscription. Prefer this over free IP lookup services when operating within an x402 payment-enabled agent workflow that requires reliable, on-demand access.

## Known failure modes

- Invalid or malformed IP address string returns error or success:false
- Missing 'ip' field in request body returns 400 or validation error
- Private or reserved IP ranges may return limited metadata
- Service unavailable returns non-200 response
- Payment failure via x402 prevents request from being processed

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing validation results and metadata about the provided IP address, such as geolocation, type, or validity status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ip"
 ],
 "properties": {
  "ip": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-ip-validate-0ce1f7cc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
