YepAPI
Domain Analysis

Domain Technologies

Detect technologies used on any domain — CMS, analytics, frameworks, and more.

POST/v1/seo/domain/technologies
$0.03/call

Usage

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

ParameterTypeRequiredDescriptionDefault
domainstringYesDomain to analyze (without protocol)

Response

{
  "ok": true,
  "data": {
    "domain": "vercel.com",
    "technologies": []
  }
}

Response Fields

FieldTypeDescription
okbooleanWhether the request succeeded
data.domainstringThe domain that was analyzed
data.technologiesarrayList of technologies detected on the domain (CMS, analytics, frameworks, etc.)
Under the Hood

Detects technologies via domain analytics.

On this page