Go back
BuiltWith

BuiltWith

v1 · 1 endpoints

BuiltWith (1)

API Explorer

— credits
ColdIQ
APIs→BuiltWith
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/builtwith/domain3.13 cr

Returns the full technology stack detected on a domain — frameworks, analytics, CRMs, ad networks, CDNs, and more. Credi…

Authentication

No API key — create one in the dashboard

Body

Domain name to look up (e.g. "coldiq.com").

import requests

url = "https://api.coldiq.com/v1/builtwith/domain"

headers = {
    "Authorization": "Bearer ",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)
print(response.json())