Programmatic access to technographic data. Enrich domains, search by technology stack, and build lead lists via REST API with consistent JSON responses.
Standard JSON responses with consistent error codes. Bearer token authentication. Rate limits scale with your plan.
POST up to 5,000 domains. Cached results return instantly. Uncached domains are queued and enriched asynchronously.
Find websites by technology, estimated country, and confidence with paginated results.
Quick start
Replace tk_live_YOUR_KEY with your API key.
/api/v1/enrich/domain?domain=example.comSingle domain lookupcurl -H "Authorization: Bearer tk_live_YOUR_KEY" \
"https://api.glympt.com/api/v1/enrich/domain?domain=example.com"{
"domain": "example.com",
"technologies": [
{ "slug": "cloudflare", "name": "Cloudflare", "category": "cdn", "confidence": 95 },
{ "slug": "nginx", "name": "Nginx", "category": "backend", "confidence": 85 }
],
"estimatedCountry": "US",
"scannedAt": "2026-06-28T12:00:00Z"
}/api/v1/enrich/bulkBulk domain enrichmentcurl -X POST \
-H "Authorization: Bearer tk_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"domains":["example.com","shopify.com"]}' \
"https://api.glympt.com/api/v1/enrich/bulk"{
"data": [
{ "domain": "example.com", "technologies": [...], "status": "complete" },
{ "domain": "shopify.com", "technologies": [...], "status": "complete" }
]
}/api/v1/enrich/search?include=shopify&country=DEFiltered domain searchcurl -H "Authorization: Bearer tk_live_YOUR_KEY" \
"https://api.glympt.com/api/v1/enrich/search?include=shopify&country=DE&page=1"{
"data": [
{ "domain": "some-shop.de", "technologies": [...], "estimatedCountry": "DE" }
],
"pagination": { "page": 1, "hasNextPage": true }
}API access requires a Pro or Business plan. Keys are prefixed with tk_live_ and are hashed at rest. You'll see the full key only once.
—
10/mo
—
60 req/min
500/mo
500 rows
300 req/min
5,000/mo
5,000 rows