Docs
Dashboard
SEO Research

topical_map

Design pillar-cluster content architecture for topical authority

Parameters

ParameterTypeRequiredDefaultDescription
core_topicstring
Optional
Main topic for the content cluster. Uses project niche if not specified.
depthnumber
Optional
2Depth of cluster: 1 (pillar + 5 articles), 2 (+ subtopics), 3 (full hierarchy).

Example

Create a topical map for React development:

Request

{
  "core_topic": "react development",
  "depth": 2
}

Response

{
  "core_topic": "react development",
  "pillar_page": {
    "title": "Complete Guide to React Development",
    "target_keyword": "react development",
    "word_count": 4000
  },
  "clusters": [
    {
      "subtopic": "React Hooks",
      "articles": [
        "useState Tutorial",
        "useEffect Deep Dive",
        "Custom Hooks Guide"
      ]
    },
    {
      "subtopic": "React Performance",
      "articles": [
        "React Optimization Tips",
        "Memoization Guide"
      ]
    }
  ],
  "internal_linking": {
    "pillar_to_clusters": true,
    "cross_cluster_links": ["hooks -> performance"]
  }
}

Tips

Best Practices

  • Depth 1: Quick cluster (pillar + 5 articles)
  • Depth 2: Standard cluster with subtopics
  • Depth 3: Full content hierarchy for maximum authority
  • Use with content_calendar to plan publishing schedule

Related Tools