Page Intent & Keywords
What's the search intent and keywords for this URL?
Analyzes a page to identify its intent, page type, and likely keyword focus.
🤖 Also callable from any AI agent via REST API or MCP.
What it does
Page Intent and Keywords analyzes a URL to identify its true intent, page type, and keyword focus using on-page signals.
Best for
Check whether a page matches the intent you want to rank for.
How it works
- Scrape page content and metadata.
- Classify current intent and page type.
- Extract a primary keyword phrase and supporting keywords.
- Return evidence snippets and confidence notes.
Outputs
- Current intent and page type
- Primary keyword or null if signals are weak
- Supporting keywords
- Confidence level and evidence
Results screenshots
Real screenshots from completed tool runs. Click any image to open the full results view.
Intent results
Review page intent, page type, confidence, notes, and extracted keywords from a completed run.
Intent detail view
Open the full results view to inspect the supporting keyword and evidence context.
Common workflows
Find - Fix - Track
Your site already gets traffic, but growth has stalled.
- Quick Win Keywords - Find keywords ranking 6-20 with traffic potential
- Results Snapshot - Review what page-one winners look like
- Page Intent & Keywords - Confirm your target URL matches intent
- Rank Checker - Track whether fixes move rankings
Audit - Align - Refresh
A page ranks but does not convert or feels off-topic.
- Page Intent & Keywords - Identify the page's actual intent and focus
- Results Snapshot - Compare intent against page-one winners
- Winning Content Outline - Rebuild the outline to match intent
Run Page Intent & Keywords 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/page-intent-keywords/run
GET https://paygseo.com/functions/v1/api-v1/tools/page-intent-keywords/history
GET https://paygseo.com/functions/v1/api-v1/tools/page-intent-keywords/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
page-intent-keywords
page-intent-keywords__history
page-intent-keywords__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/page-intent-keywords/run \
-H "Authorization: Bearer $PAYGSEO_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com/running-shoes"}'
# List your recent runs
curl "https://paygseo.com/functions/v1/api-v1/tools/page-intent-keywords/history?limit=10" \
-H "Authorization: Bearer $PAYGSEO_KEY"
# Fetch a full past result
curl https://paygseo.com/functions/v1/api-v1/tools/page-intent-keywords/results/RUN_UUID \
-H "Authorization: Bearer $PAYGSEO_KEY"