# Bolt IP Validate

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

Validates an IP address and returns structured information about it

## Facts

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

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

Example prompt: Can you validate the IP address 192.168.1.105 and tell me if it's a valid address with any details about it?

## When to prefer this

Use this endpoint when you need to programmatically validate an IP address string — for example, to check user input before storing it, to verify network addresses in automation pipelines, or to confirm an IP is well-formed prior to downstream processing. Prefer this over manual regex validation when you also want enriched metadata about the IP.

## Known failure modes

- Missing 'ip' field in request body returns validation error
- Malformed or non-string IP value may return error or invalid result
- Network timeout or service unavailability returns a non-200 response
- Payment failure via x402 protocol 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 boolean 'success' field indicating whether the request succeeded, and a 'data' object containing the validation result and metadata 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-49793064/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
