Documentation Index
Fetch the complete documentation index at: https://docs.loqate.com/llms.txt
Use this file to discover all available pages before exploring further.
What is Reach?
Reach is GBG’s agent-native identity and address verification product. It verifies addresses, emails, and phone numbers in real time — returning a confidence score, a policy-aware recommendation, and a full audit trail in one command. Reach is delivered as a single binary (lqt) that serves three interfaces from one verification engine:
| Interface | Best for | How it works |
|---|---|---|
| CLI | Tool loops, scripts, CI/CD | Single Go binary. Pipes JSON into agent frameworks. |
| MCP Server | Claude, Cursor, VS Code, agent frameworks | Stdio mode for local agents, HTTP mode for hosted deployments. |
| Claude Agent Skill | Claude users | Plain language interface installed via npx skills add. |
How it works
Every verification request follows the same flow:Submit contact data
Send an address, email, phone number — or any combination — via the CLI, MCP tool, or skill.
Verification
Reach calls the Loqate APIs to verify each field and compute a confidence score between 0 and 1.
Policy evaluation
The confidence score is evaluated against the active policy’s thresholds to produce a recommendation:
accept, review, or reject.Verification capabilities
Address Verification
Confidence scoring, AVC match level, verification status, premise-level matching across 245+ countries.
Email Validation
Disposable domain detection, fraud risk flags, deliverability assessment, catch-all detection.
Phone Validation
Number type detection (mobile/landline), carrier identification, E.164 normalization.
Combined Verification
Verify address, email, and phone in a single request with a unified confidence score and recommendation.
Example output
A singleverify call returns structured JSON that agents can parse and act on:
overall.recommendation is the lowest-confidence field’s recommendation — if any field fails the policy threshold, the overall recommendation reflects that.
This is an illustrative example. See the lqt documentation for full schema and response details.
What you need
- A Loqate API key — sign up or use an existing key
- The
lqtbinary — installation guide - Optionally, an Anthropic API key for the
parsecommand (address parsing via Claude Haiku)

