
Realask - verified answers from the physical world
Ask a US local business a current question by phone.
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
What data it sees
Do you need an account
No: the server works without sign-in
Ask a US local business a current question by phone. Typed, timestamped answers for agents; x402.
Server tool list (5)
Raw names from tools/list. Only developers need these.
| quote_real_world_answer | Get a free, immutable price quote for verifying a current fact about a US local business (stock, price, availability, capability, policy, wait time). Returns quote_id, price in integer minor units, scope, expected_completion_seconds and expires_at. Use purchase_quote to buy it. |
| quote_real_world_action | Get a free price to ARRANGE something at a specific US local business: book an appointment, hold an item, request a formal quote, or cancel a prior booking. This creates a real obligation, so it needs explicit authorization, the customer's name and callback number, and a maximum price the caller may agree to. The caller never negotiates, never pays, and never substitutes something different. Purchase the returned quote with purchase_quote. |
| purchase_quote | The single purchase path: pays for a quote from EITHER quote_real_world_answer or quote_real_world_action and starts the job. There is no separate action-purchase tool. Returns job_id and job_token (keep it; it is shown once), then poll get_verification_status and read get_verification_result. If this server has no payment capability, returns the x402 payment requirements (HTTP 402 body) so you can pay with your own payment tool and retry the POST /v1/jobs request with a PAYMENT-SIGNATURE header. |
| get_verification_status | Read-only progress check on a job bought with purchase_quote. Free, changes nothing, and safe to call repeatedly. Returns the state plus a progress object (businesses discovered, call attempts made). States are queued, discovering, calling or extracting while the job is still running, and completed, partial, failed, timed_out or canceled once it is final. Poll every 15-30 seconds; live calls take minutes. Use this to decide WHEN to read the answer; use get_verification_result to read the answer itself. If you only intend to poll until the job is done, get_verification_result can be polled directly instead - it returns a provisional 202 until the job is final. |
| get_verification_result | Read-only. The answer itself: typed facts, evidence excerpts, timestamps, confidence scores, freshness, and an explicit list of what could not be verified. Free, and safe to call repeatedly. If the job is not final yet the response is provisional (http_status 202) - poll until 200, or watch get_verification_status for a terminal state first. A completed job answers every required criterion; a partial one answers some and says so in limitations. |