# Bolt Phone Number Validator

> Bolt Phone Number Validator is a paid API for AI agents from v0-bolt.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Validates a phone number and returns parsed details such as format, country, and validity status

## Facts

- Endpoint: POST https://v0-bolt.orbonomy.xyz/api/phone-validate
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-phone-number-validator-07307884
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uaQ49nC1ZCrxZxCHVx22T

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

Example prompt: Can you validate this phone number for me: +44 7911 123456 — I think it's a UK number, so check it against the GB country code.

## When to prefer this

Use this endpoint when you need to validate or verify a phone number's authenticity and format before using it downstream — particularly useful for form validation, user onboarding, or cleaning contact lists. Prefer this over regex-only checks when you need carrier or country-level metadata.

## Known failure modes

- Invalid or malformed phone number string returns success: false
- Unsupported country code returns an error in the data object
- Missing required phone field returns a validation error
- Network or upstream timeout returns a 500 or failure response
- Non-numeric or garbage input may return invalid flag rather than an error

## 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 and a data object containing phone validation details such as whether the number is valid, its formatted representation, detected country, carrier, and line type information.

## 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/bolt-phone-number-validator-07307884/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)
