Skip to main content

Node Inputs

Required Fields

URLs:
A list of domains to analyze for top-performing pages.
Example: ["https://example.com", "https://example2.com"]

Optional Fields

Data Source:
The Majestic index to query.
Available options:
  • fresh: Fresh Index (last 90 days)
  • historic: Historic Index (all time)
    Default: fresh
Max Results:
Maximum number of top pages to retrieve per domain.
Example: 20
Order By:
Sorting criteria for pages.
Available options:
  • trust_flow: Sort by Trust Flow
  • citation_flow: Sort by Citation Flow
  • backlinks: Sort by backlink count
    Default: trust_flow

Node Output

Top Pages:
A ranked list of the most valuable pages on each analyzed domain based on backlink metrics.
Example Output:
{
  "results": [
    {
      "domain": "https://example.com",
      "top_pages": [
        {
          "url": "https://example.com/blog/seo-guide",
          "trust_flow": 42,
          "citation_flow": 48,
          "external_backlinks": 567,
          "referring_domains": 89,
          "topical_trust_flow": {
            "Marketing": 25,
            "Technology": 18
          }
        },
        {
          "url": "https://example.com/resources",
          "trust_flow": 38,
          "citation_flow": 45,
          "external_backlinks": 432,
          "referring_domains": 67,
          "topical_trust_flow": {
            "Business": 22,
            "Marketing": 15
          }
        }
      ],
      "total_pages": 20
    }
  ]
}

Node Functionality

The Majestic Top Pages node:
  • Identifies the most valuable pages on a domain based on backlinks.
  • Provides Trust Flow and Citation Flow for each page.
  • Reveals which content attracts the most high-quality links.
  • Helps prioritize pages for internal linking strategies.
  • Supports competitive analysis by comparing top pages across domains.
I