# Bolt IP Validate

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

Validates an IP address and returns structured validation data about it

## Facts

- Endpoint: POST https://deltadata.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-5e9ca428
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TgA0GcaCW0_GfmHDo7INE

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

Example prompt: Can you validate the IP address 192.168.1.105 and tell me if it's valid and what you can find out about it?

## When to prefer this

Use this endpoint when you need to quickly validate whether a given IP address string is well-formed and obtain associated metadata, and you are already operating in an x402/USDC micropayment environment. It costs only $0.01 per call, making it suitable for per-request validation workflows.

## Known failure modes

- Invalid or malformed IP string provided — likely returns success: false
- Missing required 'ip' field — returns 400 or error response
- Non-string value passed for ip field
- Payment not included or insufficient USDC — 402 response returned

## 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 request succeeded, and a 'data' object containing structured validation details about the provided 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-5e9ca428/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from deltadata.orbonomy.xyz](https://www.zero.xyz/host/deltadata.orbonomy.xyz/llms.txt)
