Technology catalog

Every technology we track with its domain count, grouped by category. Cache it; it changes with each data release.

GET /meta/technologies

Costs Free

Every technology we track with its domain count, grouped by category. Cache it; it changes with each data release.

The WooCommerce count above is a placeholder in the example only; the live answer carries the real figure.

Base URL https://getdomaindata.com/api/v1

Request

curl

curl https://getdomaindata.com/api/v1/meta/technologies \ -H "Authorization: Bearer gdd_live_YOUR_KEY"

JavaScript

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);

Python

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"])

Response

A real record from the serving database, abridged where marked with an ellipsis. Null stays null.

{ "data": [ { "category": "ecommerce", "technologies": [ { "tech": "Shopify", "domains": 7407815 }, { "tech": "WooCommerce", "domains": 0 }, "..." ] }, "..." ] }
FieldTypeMeaning
data[].categorystringCategory slug.
data[].technologies[]{tech, domains}[]Technologies in the category with their domain counts.

Errors this endpoint returns

All errors
401 invalid_keyThe key is missing, malformed, or revoked. Check the Authorization header and the key on your account page. Revoked keys stop on the next request.