# Bolt Phone Validate

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

Validates a phone number and returns structured validation data including format, country, and line type information

## Facts

- Endpoint: POST https://deltadata.orbonomy.xyz/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/bolt-phone-validate-de3a264d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_64JkDQYjhF-Dknzh-qelS

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

Example prompt: Can you validate the phone number +1 (415) 555-0123 for the US and tell me if it's a real, properly formatted number?

## When to prefer this

Use this endpoint when you need quick, per-request phone number validation with structured output and pay-per-use pricing via USDC. It is well-suited for AI agent workflows that need to verify phone numbers on demand without a subscription, especially when you also need country-level context or line type information alongside basic format validation.

## Known failure modes

- Invalid or malformed phone number string returns success: false
- Missing required 'phone' field returns a 400-level error
- Unsupported country code may cause incorrect or failed validation
- Ambiguous numbers without a country hint may produce inaccurate results
- Network or service downtime returns a 5xx 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 validation details about the phone number, such as whether it is valid, its formatted form, country association, line type (mobile/landline), and other parsed 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-de3a264d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from deltadata.orbonomy.xyz](https://www.zero.xyz/host/deltadata.orbonomy.xyz/llms.txt)
