Every technology we track with its domain count, grouped by category. Cache it; it changes with each data release.
Every technology we track with its domain count, grouped by category. Cache it; it changes with each data release.
curl https://getdomaindata.com/api/v1/meta/technologies \
-H "Authorization: Bearer gdd_live_YOUR_KEY"const KEY = process.env.GDD_API_KEY;
const r = await fetch("https://getdomaindata.com/api/v1/meta/technologies", { headers: { Authorization: "Bearer " + KEY } });
const { data } = await r.json();
console.log(r.headers.get("X-Quota-Remaining"), data);import os, requests
h = {"Authorization": "Bearer " + os.environ["GDD_API_KEY"]}
r = requests.get("https://getdomaindata.com/api/v1/meta/technologies", headers=h)
print(r.headers.get("X-Quota-Remaining"), r.json()["data"]){
"data": [
{
"category": "ecommerce",
"technologies": [
{
"tech": "Shopify",
"domains": 7407815
},
{
"tech": "WooCommerce",
"domains": 0
},
"..."
]
},
"..."
]
}| Field | Type | Meaning |
|---|---|---|
| data[].category | string | Category slug. |
| data[].technologies[] | {tech, domains}[] | Technologies in the category with their domain counts. |
| 401 invalid_key | The key is missing, malformed, or revoked. Check the Authorization header and the key on your account page. Revoked keys stop on the next request. |