# DataVault Phone Number Validator

> DataVault Phone Number Validator is a paid API for AI agents from zetdatavault.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Validates a phone number and returns metadata about its format, type, and country of origin

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/api/phone-validate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-phone-number-validator-fe965108
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eLt_Mcc5QCVAkcuW7RUcU

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-phone-number-validator-fe965108 -d '<json body>'
```

Example prompt: Can you check if the phone number +44 7911 123456 is valid? It's a UK number, so use GB as the country.

## When to prefer this

Use this endpoint when you need to validate or parse a phone number, especially for international numbers where country context matters. Prefer this over regex-only checks when you need authoritative validation including number type detection (mobile vs. landline) and country-specific formatting rules. Best suited for user onboarding flows, form validation, fraud prevention, or pre-call/SMS verification.

## Known failure modes

- Invalid or missing phone field returns an error response with success: false
- Unrecognized country code may result in failed validation or incorrect metadata
- Malformed phone number strings (e.g. letters, wrong length) return invalid result
- Payment failure via x402 protocol returns 402 status before processing
- Network timeout or upstream service unavailability returns 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 details about the phone number, such as whether it is valid, its country, format, and type (mobile, landline, etc.).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "phone"
 ],
 "properties": {
  "phone": {
   "type": "string"
  },
  "country": {
   "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-phone-number-validator-fe965108/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)
