# workbot1.oddsys.org Phone Number Validation

> workbot1.oddsys.org Phone Number Validation is a paid API for AI agents from workbot1.oddsys.org, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Validates and normalizes phone numbers using Google libphonenumber, returning validity, multiple format representations, country, region, and line type for single numbers or batches up to 100.

## Facts

- Endpoint: POST https://workbot1.oddsys.org/phone
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/workbot1-oddsys-org-phone-number-validation-e3a35132
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AO0eqH4NGHANcAlfINo18

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 workbot1-oddsys-org-phone-number-validation-e3a35132 -d '<json body>'
```

Example prompt: Can you validate this phone number and tell me if it's real, what country it's from, and whether it's a mobile or landline — the number is +1 (415) 555-0182? Also give me the E.164 and international formats.

## When to prefer this

Choose this endpoint when you need authoritative phone number validation and normalization powered by Google libphonenumber, especially when you need multi-format output (E.164, international, national), line-type classification (mobile/VoIP/fixed), or batch processing of up to 100 numbers. Prefer over regex-based validators when correctness and international coverage matter.

## Known failure modes

- Invalid or unparseable phone number string returns validity=false with no format fields
- Batch exceeding 100 numbers may be rejected or return an error
- Ambiguous numbers without a country hint may fail to parse correctly
- Numbers with non-standard characters or formatting may cause parse errors
- Missing country hint for local-format numbers (e.g. 07911...) may produce incorrect country assignment

## How this service works

Validate and normalize phone numbers (Google libphonenumber): validity, E.164/international/national formats, country, region, and line type (mobile/fixed/VoIP). Single number or batches up to 100.

## Output

Returns a structured result per number including: validity boolean, E.164 format (e.g. +14155550182), international format, national format, country code (ISO), region, and line type (mobile, fixed_line, voip, etc.). For batch requests, returns one result object per input number.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "number": {
   "type": "string",
   "description": "One phone number (E.164 or national with region)."
  },
  "region": {
   "type": "string",
   "description": "2-letter default region for national-format input (e.g. US)."
  },
  "numbers": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "maxItems": 100,
   "description": "Batch of numbers (alternative to number)."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/workbot1-oddsys-org-phone-number-validation-e3a35132/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from workbot1.oddsys.org](https://www.zero.xyz/host/workbot1.oddsys.org/llms.txt)
