Domain Analysis
Domain Metrics
Get domain authority, traffic estimates, backlinks, and keyword rankings for any domain.
POST
$0.01/call/v1/seo/domain/overviewUsage
const res = await fetch('https://api.yepapi.com/v1/seo/domain/overview', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({ domain: 'vercel.com', location_code: 2840 }),
});
const { data } = await res.json();
console.log(data);curl -X POST https://api.yepapi.com/v1/seo/domain/overview \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"domain": "vercel.com", "location_code": 2840}'Request Body
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
domain | string | Yes | Domain to analyze (without protocol) | — |
location_code | number | No | Target country code. See Location Codes. | 2840 |
language | string | No | ISO language code | "en" |
Response
{
"ok": true,
"data": {
"domain": "vercel.com",
"domainRank": 0.0,
"organicTraffic": 154912,
"organicKeywords": 39217,
"backlinks": 0,
"referringDomains": 0
}
}Response Fields
| Field | Type | Description |
|---|---|---|
ok | boolean | Whether the request succeeded |
data.domain | string | The domain that was analyzed |
data.domainRank | number | Domain authority rank score |
data.organicTraffic | number | Estimated monthly organic search traffic |
data.organicKeywords | number | Total number of organic keywords the domain ranks for |
data.backlinks | number | Total number of backlinks pointing to the domain |
data.referringDomains | number | Number of unique domains linking to the target |
Under the Hood
This combines domain analytics and backlink data into one clean response. Multiple data sources merged into a single call.