# DataVault IP Address Validator

> DataVault IP Address Validator is a paid API for AI agents from zetavault.vercel.app, 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, such as format validity and metadata

## Facts

- Endpoint: POST https://zetavault.vercel.app/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/datavault-ip-address-validator-0a63a2c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7NFMiQX3qRJqMvTFR_dFJ

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 datavault-ip-address-validator-0a63a2c8 -d '<json body>'
```

Example prompt: Can you validate the IP address 192.168.1.105 and tell me if it's a legitimate, properly formatted IP?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call IP address validation without setting up your own validation logic. It is ideal for lightweight pipelines that need to verify user-submitted IPs or sanitize input data before further processing, especially when integrated with x402/USDC micropayment workflows on Base.

## Known failure modes

- Missing 'ip' field in request body returns validation error
- Malformed JSON body causes request failure
- Invalid or non-IP string may return success:false with error detail
- Network timeout if upstream data source is unavailable
- Empty string input may return failure or schema error

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing validation results and any available metadata about the submitted 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/datavault-ip-address-validator-0a63a2c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
