Programmatic access to 558,000+ Texas notary bond records. Verify bond status, search by name or ID, and integrate real-time bond verification into your title, real estate, or compliance application.
https://verify.quantumsurety.bond/api/v1/
All /v1/ requests require an API key as the X-API-Key header. Get a free key below.
Returns full bond details for a specific notary ID. Fastest lookup method.
curl https://verify.quantumsurety.bond/api/v1/lookup/123456789 \
-H "X-API-Key: qsb_your_key_here"
{
"notary_id": "123456789",
"first_name": "Maria",
"last_name": "Garcia",
"city": "Houston",
"state": "TX",
"zip": "77001",
"effective_date": "2024-05-01",
"expire_date": "2026-05-01",
"surety_company": "Quantum Surety",
"status": "active",
"label": "Active",
"daysLeft": 347,
"api_requests_remaining": 998
}
Search by any combination of name, city, or ZIP. Returns up to 100 results ordered by expiration date.
| Parameter | Description | Match |
|---|---|---|
| first_name | First name | Prefix |
| last_name | Last name | Prefix |
| city | City | Prefix |
| zip | ZIP code | Exact |
| notary_id | Notary ID | Exact |
curl "https://verify.quantumsurety.bond/api/v1/search?last_name=Garcia&city=Houston" \
-H "X-API-Key: qsb_your_key_here"
{
"results": [ ... ],
"total": 23,
"api_requests_remaining": 997
}
curl https://verify.quantumsurety.bond/api/v1/status
{
"status": "ok",
"total_notaries": 558898,
"last_updated": "2026-05-01T07:00:00.000Z",
"version": "1.0"
}
| Status | Meaning |
|---|---|
| active | Bond is valid and expires in more than 60 days |
| expiring | Bond expires within 60 days — renewal recommended |
| expired | Bond expiration date has passed |
| unknown | No expiration date on record |
Your key will be emailed instantly. No credit card required.