SE Ranking · Schema

SE Ranking Domain Overview

Domain-level SEO overview data including organic traffic estimates, keyword counts, domain authority, and competitive positioning.

SEOKeyword ResearchRank TrackingBacklinksCompetitor AnalysisWebsite AuditAI SearchGEODigital Marketing

Properties

Name Type Description
domain string The root domain being analyzed (e.g., example.com).
organic_keywords integer Number of keywords for which the domain ranks in organic search results.
organic_traffic integer Estimated monthly organic search traffic.
organic_cost number Estimated monthly value of organic traffic in USD.
paid_keywords integer Number of paid search keywords the domain is running ads for.
paid_traffic integer Estimated monthly paid search traffic.
paid_cost number Estimated monthly spend on paid search campaigns in USD.
domain_inlink_rank number SE Ranking domain authority score based on backlink profile.
referring_domains integer Number of unique root domains linking to this domain.
total_backlinks integer Total backlinks pointing to the domain.
country_code string ISO 3166-1 alpha-2 country code for the data region.
history array Historical monthly snapshots of domain metrics.
View JSON Schema on GitHub

JSON Schema

se-ranking-domain-overview.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/se-ranking/main/json-schema/se-ranking-domain-overview.json",
  "title": "SE Ranking Domain Overview",
  "description": "Domain-level SEO overview data including organic traffic estimates, keyword counts, domain authority, and competitive positioning.",
  "type": "object",
  "properties": {
    "domain": {
      "type": "string",
      "description": "The root domain being analyzed (e.g., example.com)."
    },
    "organic_keywords": {
      "type": "integer",
      "description": "Number of keywords for which the domain ranks in organic search results.",
      "minimum": 0
    },
    "organic_traffic": {
      "type": "integer",
      "description": "Estimated monthly organic search traffic.",
      "minimum": 0
    },
    "organic_cost": {
      "type": "number",
      "description": "Estimated monthly value of organic traffic in USD.",
      "minimum": 0
    },
    "paid_keywords": {
      "type": "integer",
      "description": "Number of paid search keywords the domain is running ads for.",
      "minimum": 0
    },
    "paid_traffic": {
      "type": "integer",
      "description": "Estimated monthly paid search traffic.",
      "minimum": 0
    },
    "paid_cost": {
      "type": "number",
      "description": "Estimated monthly spend on paid search campaigns in USD.",
      "minimum": 0
    },
    "domain_inlink_rank": {
      "type": "number",
      "description": "SE Ranking domain authority score based on backlink profile.",
      "minimum": 0,
      "maximum": 100
    },
    "referring_domains": {
      "type": "integer",
      "description": "Number of unique root domains linking to this domain.",
      "minimum": 0
    },
    "total_backlinks": {
      "type": "integer",
      "description": "Total backlinks pointing to the domain.",
      "minimum": 0
    },
    "country_code": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code for the data region.",
      "pattern": "^[A-Z]{2}$"
    },
    "history": {
      "type": "array",
      "description": "Historical monthly snapshots of domain metrics.",
      "items": {
        "type": "object",
        "properties": {
          "date": {
            "type": "string",
            "format": "date",
            "description": "Snapshot date (YYYY-MM-DD)."
          },
          "organic_keywords": {
            "type": "integer"
          },
          "organic_traffic": {
            "type": "integer"
          }
        }
      }
    }
  },
  "required": ["domain"]
}