# Bolt IP Validate

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

Validates an IP address and returns structured metadata about it

## Facts

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

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-c3e872f5 -d '<json body>'
```

Example prompt: Can you validate the IP address 192.168.1.105 and tell me if it's legitimate and what details come back about it?

## When to prefer this

Use this endpoint when you need to programmatically validate an IP address string and retrieve metadata about it in a single pay-per-use call without managing a subscription. Ideal for agents needing lightweight, on-demand IP validation as part of a larger workflow.

## Known failure modes

- Invalid or malformed IP address string provided — success may return false or error
- Missing required 'ip' field in request body — validation error
- Network timeout or service unavailability — HTTP 5xx response
- Payment failure via x402 — 402 Payment Required if USDC payment not provided

## 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 indicating whether the validation succeeded, and a 'data' object containing structured metadata about the validated IP address.

## 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-c3e872f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
