Domain Analysis
Domain Technologies
Detect technologies used on any domain — CMS, analytics, frameworks, and more.
POST
$0.03/call/v1/seo/domain/technologiesUsage
const res = await fetch('https://api.yepapi.com/v1/seo/domain/technologies', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({ domain: 'vercel.com' }),
});
const { data } = await res.json();
console.log(data);curl -X POST https://api.yepapi.com/v1/seo/domain/technologies \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"domain": "vercel.com"}'Request Body
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
domain | string | Yes | Domain to analyze (without protocol) | — |
Response
{
"ok": true,
"data": {
"domain": "vercel.com",
"technologies": []
}
}Response Fields
| Field | Type | Description |
|---|---|---|
ok | boolean | Whether the request succeeded |
data.domain | string | The domain that was analyzed |
data.technologies | array | List of technologies detected on the domain (CMS, analytics, frameworks, etc.) |
Under the Hood
Detects technologies via domain analytics.