AI search engine analyzer
Parameters
enter page url you want to check
your vebapi api key
Example Request
curl -X GET "https://vebapi.com/api/seo/apipagechecker?website=codeconia.com" \
-H "X-API-KEY: YOUR_API_KEY" \
-H "Content-Type: application/json"
Response
{
"url": "https://codeconia.com",
"ai_scrapable": true,
"content_quality_score": 80,
"flags": {
"title": true,
"headings": 1,
"paragraphs": 61,
"lists": 4,
"tables": 0,
"schema_data_found": true,
"ai_blocking": false
},
"suggestions": [
"Add more headings (H1-H3)."
]
}
🤖 AI Search Engine Analyzer API – VebAPI
Analyze a webpage to determine if its content is AI-friendly, structured for AI SEO, and suitable for AI-powered search engines.
📝 Description
The AI Search Engine Analyzer API evaluates a webpage’s content structure and metadata to identify if it is optimized for AI-based search engines like GPT-powered bots, Google SGE, Perplexity, and more. It checks for technical and semantic elements that influence AI crawling and summarization.
Ideal for modern SEO tools, content audit platforms, AI SEO analysis, and publishers optimizing for visibility in AI search results.
🎯 Key Benefits
-
🤖 Check if your content is scrapable and visible to AI bots
-
📐 Score your page’s semantic structure and readability
-
✅ Detect schema presence, headings, paragraphs, and AI blocking flags
-
🧠 Improve AI search compatibility with actionable suggestions
-
📊 Perfect for AI SEO audits, content health checks, and visibility strategies
🌐 Base URL
https://vebapi.com/api/seo/apipagechecker
📥 Input Parameters
Parameter | Type | Required | Description |
---|---|---|---|
website |
string | ✅ Yes | Full website URL or domain to analyze (e.g., codeconia.com ) |
Headers Required:
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
📤 Output Response
The response returns a JSON object that includes page score, AI scrapability status, structural data, and improvement suggestions.
Field | Type | Description |
---|---|---|
url |
string | The page URL analyzed |
ai_scrapable |
boolean | Whether the page can be crawled by AI bots |
content_quality_score |
int | Content structure score (0–100) based on AI readability |
flags.title |
boolean | Whether a <title> tag is present |
flags.headings |
int | Number of heading tags (H1-H6) present |
flags.paragraphs |
int | Number of <p> tags detected |
flags.lists |
int | Number of unordered/ordered list tags (<ul>/<ol> ) |
flags.tables |
int | Number of HTML tables found |
flags.schema_data_found |
boolean | Whether schema.org structured data was found |
flags.ai_blocking |
boolean | Whether AI bots are blocked (robots.txt or meta tags) |
suggestions |
array | Suggestions to improve AI SEO (e.g., "Add more headings") |