# Bolt Phone Validate

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

Validates a phone number and returns metadata about its validity, format, and country

## Facts

- Endpoint: POST https://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-validate-e829dcee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c4u84eIQWd9R-1GHwxIRG

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

Example prompt: Can you validate this phone number for me — +14155552671 — and confirm it's a legitimate US number?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use phone number validation without a subscription — ideal for AI agents that only occasionally need to verify phone numbers and want to avoid recurring API key management. Useful for validating user input before sending communications or storing contact data.

## Known failure modes

- Invalid or unparseable phone number returns success false
- Missing required phone field returns 400 error
- Unsupported country code may return validation failure
- Payment failure via x402 results in 402 response before processing
- Malformed request body returns error response

## 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 versions, country, line type, and related metadata.

## 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-validate-e829dcee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
