# DataVault IP Address Validator

> DataVault IP Address Validator is a paid API for AI agents from zetdatavault.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Validates an IP address and returns structured information about its validity and associated metadata

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/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/datavault-ip-address-validator-1626b8cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KPDGug--is_9zQgu8hAZK

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

Example prompt: Can you validate the IP address 203.0.113.45 and tell me if it's legitimate and what information is associated with it?

## When to prefer this

Use this endpoint when you need to quickly validate an IP address and retrieve structured metadata about it on a pay-per-call basis without a subscription commitment. Prefer it for lightweight, infrequent validation tasks where per-call pricing at $0.01 USDC is acceptable.

## Known failure modes

- Missing or malformed 'ip' field in request body — likely returns success: false or validation error
- Invalid IP string format — may return success: false with an error message
- Payment not included or insufficient USDC — returns HTTP 402 Payment Required
- Service or upstream provider unavailable — may return 5xx 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 metadata about the submitted IP address, such as whether it is valid, its format, and any associated network information.

## 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-1626b8cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
