Domain Analysis
Bulk Traffic Estimation
Estimate organic and paid traffic and keyword counts for up to 1,000 domains in a single request.
POST
$0.03/call/v1/seo/domain/trafficUsage
const res = await fetch('https://api.yepapi.com/v1/seo/domain/traffic', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({ targets: ['stripe.com', 'paypal.com'] }),
});
const { data } = await res.json();
console.log(data);curl -X POST https://api.yepapi.com/v1/seo/domain/traffic \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"targets": ["stripe.com", "paypal.com"]}'Request Body
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
targets | string[] | Yes | Array of domains to estimate (max 1,000) | — |
location | string | No | Target country as a two-letter code (e.g., "us", "gb") | "us" |
language | string | No | ISO language code (e.g., en, es) | "en" |
Response
{
"ok": true,
"data": {
"domains": [
{
"domain": "stripe.com",
"organicKeywords": 143677,
"organicTraffic": 3591807.199092444,
"paidKeywords": 32,
"paidTraffic": 864.6850079298019
},
{
"domain": "paypal.com",
"organicKeywords": 137644,
"organicTraffic": 10100772.282336311,
"paidKeywords": 93,
"paidTraffic": 3090.948067307472
}
]
}
}Response Fields
| Field | Type | Description |
|---|---|---|
ok | boolean | Whether the request succeeded |
data.domains | object[] | Array of per-domain traffic estimates |
data.domains[].domain | string | The estimated domain |
data.domains[].organicKeywords | number | Number of keywords the domain ranks for organically |
data.domains[].organicTraffic | number | Estimated monthly organic traffic (etv) |
data.domains[].paidKeywords | number | Number of keywords the domain bids on in paid search |
data.domains[].paidTraffic | number | Estimated monthly paid traffic (etv) |
Under the Hood
Built for bulk comparison — benchmark hundreds of competitors in one call. For a full ranking breakdown of a single domain, use Domain Rank Overview.