YepAPI
Domain Analysis

Bulk Traffic Estimation

Estimate organic and paid traffic and keyword counts for up to 1,000 domains in a single request.

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

Usage

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

ParameterTypeRequiredDescriptionDefault
targetsstring[]YesArray of domains to estimate (max 1,000)
locationstringNoTarget country as a two-letter code (e.g., "us", "gb")"us"
languagestringNoISO 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

FieldTypeDescription
okbooleanWhether the request succeeded
data.domainsobject[]Array of per-domain traffic estimates
data.domains[].domainstringThe estimated domain
data.domains[].organicKeywordsnumberNumber of keywords the domain ranks for organically
data.domains[].organicTrafficnumberEstimated monthly organic traffic (etv)
data.domains[].paidKeywordsnumberNumber of keywords the domain bids on in paid search
data.domains[].paidTrafficnumberEstimated 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.

On this page