For developers

Glympt API

Programmatic access to technographic data. Enrich domains, search by technology stack, and build lead lists via REST API with consistent JSON responses.

REST API

Standard JSON responses with consistent error codes. Bearer token authentication. Rate limits scale with your plan.

Bulk enrichment

POST up to 5,000 domains. Cached results return instantly. Uncached domains are queued and enriched asynchronously.

Filtered search

Find websites by technology, estimated country, and confidence with paginated results.

Quick start

Copy-paste into your terminal

Replace tk_live_YOUR_KEY with your API key.

GET/api/v1/enrich/domain?domain=example.comSingle domain lookup
curl -H "Authorization: Bearer tk_live_YOUR_KEY" \
  "https://api.glympt.com/api/v1/enrich/domain?domain=example.com"
View example response
{
  "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"
}
POST/api/v1/enrich/bulkBulk domain enrichment
curl -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"
View example response
{
  "data": [
    { "domain": "example.com", "technologies": [...], "status": "complete" },
    { "domain": "shopify.com", "technologies": [...], "status": "complete" }
  ]
}
GET/api/v1/enrich/search?include=shopify&country=DEFiltered domain search
curl -H "Authorization: Bearer tk_live_YOUR_KEY" \
  "https://api.glympt.com/api/v1/enrich/search?include=shopify&country=DE&page=1"
View example response
{
  "data": [
    { "domain": "some-shop.de", "technologies": [...], "estimatedCountry": "DE" }
  ],
  "pagination": { "page": 1, "hasNextPage": true }
}

API keys

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.

Rate limits & quotas

Free
Rate

Credits

10/mo

Bulk

Pro
Rate

60 req/min

Credits

500/mo

Bulk

500 rows

Business
Rate

300 req/min

Credits

5,000/mo

Bulk

5,000 rows