Validate phone numbers
Validate phone numbers: E.164 format, country detection, line type (mobile/landline/VOIP/toll-free), and risk score. Deterministic, sub-second. x402-native.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1542 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.qonoro.ai/v1/phone/validate
| Category | Everything else |
|---|---|
| Provider host | api.qonoro.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 1542 ms |
Example input (from the provider)
{
"body": {
"phone": "+14155552671"
},
"bodyType": "json",
"inputSchema": {
"properties": {
"buyer_region": {
"description": "Optional privacy-safe buyer region for operational reporting.",
"type": "string"
},
"country_hint": {
"description": "ISO 3166-1 alpha-2 country code hint for parsing local numbers (e.g. 'US').",
"type": "string"
},
"phone": {
"description": "Phone number to validate (E.164 preferred, e.g. '+14155552671').",
"type": "string"
}
},
"required": [
"phone"
],
"type": "object"
},
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"buyer_region": {
"description": "Optional privacy-safe buyer region for operational reporting.",
"type": "string"
},
"country_hint": {
"description": "ISO 3166-1 alpha-2 country code hint for parsing local numbers (e.g. 'US').",
"type": "string"
},
"phone": {
"description": "Phone number to validate (E.164 preferred, e.g. '+14155552671').",
"type": "string"
}
},
"required": [
"phone"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"inputSchema": {
"type": "object"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"cache_hit": {
"type": "boolean"
},
"country_code": {
"nullable": true,
"type": "integer"
},
"country_iso": {
"nullable": true,
"type": "string"
},
"country_name": {
"nullable": true,
"type": "string"
},
"e164_format": {
"nullable": true,
"type": "string"
},
"international_format": {
"nullable": true,
"type": "string"
},
"line_type": {
"type": "string"
},
"national_format": {
"nullable": true,
"type": "string"
},
"phone_input": {
"type": "string"
},
"possible": {
"type": "boolean"
},
"request_id": {
"type": "string"
},
"response_time_ms": {
"nullable": true,
"type": "number"
},
"risk_reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"risk_score": {
"type": "number"
},
"valid": {
"type": "boolean"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}