AI search engine analyzer
Analyzes a webpage to determine if its content is AI-friendly and ready for AI SEO. It checks for titles, headings, paragraphs, structured data (JSON-LD), and meta tags, then provides a score and suggestions to make the page more AI-accessible.
GET /seo/apipagechecker
Parameters
website
Required
query
string
enter page url you want to check
X-API-KEY
Required
header
string
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)."
]
}