SEO Meta Analyzer
Pricing
Pay per usage
Go to Apify Store
SEO Meta Analyzer
Analyze any webpage SEO meta tags — title, description, OG tags, Twitter cards, canonical URLs, headings, and schema markup. Perfect for SEO audits, competitor research, and content optimization.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Dima Radov
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
5 days ago
Last modified
Categories
Share
An Apify actor that analyzes webpage SEO meta tags.
Features
- Meta tags — title, description, keywords
- Open Graph tags — og:title, og:description, og:image
- Heading structure — counts of h1 through h6 tags
- Image alt-text analysis — how many images have alt text vs. missing it
- Schema markup detection — JSON-LD, Microdata, and RDFa
Input
| Field | Type | Description |
|---|---|---|
urls | string[] | Array of webpage URLs to analyze |
Output (per URL)
| Field | Type | Description |
|---|---|---|
url | string | The analyzed URL |
metaTitle | string|null | Content of <title> |
metaDescription | string|null | Meta description |
metaKeywords | string|null | Meta keywords |
ogTitle | string|null | Open Graph title |
ogDescription | string|null | Open Graph description |
ogImage | string|null | Open Graph image URL |
h1Count | int | Number of <h1> with text |
h2Count | int | Number of <h2> with text |
h3Count | int | Number of <h3> with text |
h4Count | int | Number of <h4> with text |
h5Count | int | Number of <h5> with text |
h6Count | int | Number of <h6> with text |
imagesWithAlt | int | Images that have non-empty alt |
imagesWithoutAlt | int | Images missing alt |
hasSchema | bool | Whether structured data was detected |
error | string|null | Error message if the URL could not be fetched |
Local development
pip install -r requirements.txtpython -m src