Pillar or Supporting Page?
What role should this page play in my content structure?
Classifies whether an existing page should be a pillar or a supporting cluster post.
🤖 Also callable from any AI agent via REST API or MCP.
What it does
Pillar or Supporting Page? analyzes the keywords an existing URL ranks for and scores whether it should be a broad pillar or a narrow supporting post.
Best for
Decide whether to expand a page or support it with related content.
How it works
- Analyze the keywords the URL already ranks for.
- Evaluate keyword breadth versus specificity.
- Score the page against pillar and supporting patterns.
Outputs
- Pillar or supporting classification
- Confidence score
- Ranked keywords
- Keywords grouped as broad, narrow, or mixed
Results screenshots
Real screenshots from completed tool runs. Click any image to open the full results view.
Classification results
Review the pillar/supporting verdict, confidence score, and keyword groupings from a completed run.
Common workflows
Diagnose - Restructure - Expand
You are unsure how existing pages fit together.
- Pillar or Supporting Page? - Determine the role of an existing page
- Keyword Discovery - Identify related keyword opportunities
- Winning Content Outline - Plan new supporting or pillar pages
Support - Structure - Track
You want to expand a pillar page with supporting content.
- Pillar or Supporting Page? - Confirm the existing page's role
- Keyword Discovery - Find related supporting topics
- Winning Content Outline - Plan new supporting articles
- Rank Checker - Track movement after publishing
Run Pillar or Supporting Page? from your AI agent
This tool is fully callable over REST and via our MCP server, so Claude, Cursor, ChatGPT or any custom agent can run it. Every response includes your remaining credit balance.
Endpoints
POST https://paygseo.com/functions/v1/api-v1/tools/pillar-cluster-classifier/run
GET https://paygseo.com/functions/v1/api-v1/tools/pillar-cluster-classifier/history
GET https://paygseo.com/functions/v1/api-v1/tools/pillar-cluster-classifier/results/{run_id}Authenticate with Authorization: Bearer YOUR_KEY. Create keys in Dashboard → API Keys. History and result lookups are free (rate-limited) and only ever return your own runs.
MCP tools
pillar-cluster-classifier
pillar-cluster-classifier__history
pillar-cluster-classifier__resultAdd PAYGSEO to your agent in one line: Connect to the PAYGSEO tools using https://paygseo.com/docs — see the MCP setup guide.
Example calls
# Run the tool
curl https://paygseo.com/functions/v1/api-v1/tools/pillar-cluster-classifier/run \
-H "Authorization: Bearer $PAYGSEO_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com/running-shoes","market":"us-en"}'
# List your recent runs
curl "https://paygseo.com/functions/v1/api-v1/tools/pillar-cluster-classifier/history?limit=10" \
-H "Authorization: Bearer $PAYGSEO_KEY"
# Fetch a full past result
curl https://paygseo.com/functions/v1/api-v1/tools/pillar-cluster-classifier/results/RUN_UUID \
-H "Authorization: Bearer $PAYGSEO_KEY"