# Meta Tags Check API (`easyapi/meta-tags-check-api`) Actor

Easily check, edit, and preview your website's meta tags for free! Ensure your site makes a great first impression online, improves SEO, and controls how it appears when shared. Check existing tags, review their appearance, edit as needed, and export your optimized tags for your website!

- **URL**: https://apify.com/easyapi/meta-tags-check-api.md
- **Developed by:** [EasyApi](https://apify.com/easyapi) (community)
- **Categories:** Developer tools, SEO tools, Integrations
- **Stats:** 15 total users, 0 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## 🏷️ Meta Tags Checker API

Easily check, edit, and preview your website's meta tags for free! Ensure your site shines when shared online and improve your SEO rating with our intuitive tool.

### 🌟 Why Include Meta Tags?

- **First Impressions Matter**: Your website will be searched for, bookmarked, and shared. Meta tags help create an impactful first impression.
- **Image Preview**: Control how your website appears when shared on social media and search engines.
- **SEO Improvement**: Enhance your website's visibility and ranking with optimized meta tags.

### 🚀 Four Steps to Awesome Tags

1. **Check**: Analyze your website for existing meta tags.
2. **Review**: See how your current meta tags look when shared online.
3. **Edit**: Improve your social cards by editing texts, descriptions, and image links.
4. **Export**: Once satisfied, copy and paste the meta tags directly into your website.

### 🌍 Get Started Today!

Make your website stand out with well-crafted meta tags. Start enhancing your online presence now!

#### Input

A full explanation of an input example in JSON.

```
{
  "url": "apify.com"
}
```

#### Output sample

The results will be wrapped into a dataset which you can always find in the **Storage** tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

```
[
  {
    "url": "https://apify.com/",
    "canonical": "https://apify.com",
    "title": "Apify: Full-stack web scraping and data extraction platform",
    "image": "https://apify.com/img/og/landing.png",
    "author": "",
    "description": "Cloud platform for web scraping, browser automation, and data for AI. Use 2,000+ ready-made tools, code templates, or order a custom solution.",
    "keywords": "web scraper,web crawler,scraping,data extraction,API",
    "source": "apify.com",
    "price": "",
    "priceCurrency": "",
    "availability": "",
    "robots": "index,follow",
    "og:url": "https://apify.com",
    "og:locale": "en_IE",
    "og:locale:alternate": "",
    "og:title": "Apify: Full-stack web scraping and data extraction platform",
    "og:type": "website",
    "og:description": "Cloud platform for web scraping, browser automation, and data for AI. Use 2,000+ ready-made tools, code templates, or order a custom solution.",
    "og:determiner": "",
    "og:site_name": "Apify",
    "og:image": "https://apify.com/img/og/landing.png",
    "og:image:secure_url": "",
    "og:image:type": "image/png",
    "og:image:width": "1200",
    "og:image:height": "630",
    "twitter:title": "Apify: Full-stack web scraping and data extraction platform",
    "twitter:image": "https://apify.com/img/og/landing.png",
    "twitter:image:alt": "Apify: Full-stack web scraping and data extraction platform",
    "twitter:card": "summary_large_image",
    "twitter:site": "",
    "twitter:site:id": "",
    "twitter:account_id": "",
    "twitter:creator": "@apify",
    "twitter:creator:id": "",
    "twitter:player": "",
    "twitter:player:width": "",
    "twitter:player:height": "",
    "twitter:player:stream": "",
    "viewport": "width=device-width, initial-scale=1",
    "og:image:alt": "Apify: Full-stack web scraping and data extraction platform",
    "twitter:description": "Cloud platform for web scraping, browser automation, and data for AI. Use 2,000+ ready-made tools, code templates, or order a custom solution.",
    "twitter:image:width": "1200",
    "twitter:image:height": "630",
    "twitter:image:type": "image/png",
    "jsonld": {}
  }
]
```

# Actor input Schema

## `url` (type: `string`):

The website url

## Actor input object example

```json
{
  "url": "apify.com"
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("easyapi/meta-tags-check-api").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("easyapi/meta-tags-check-api").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call easyapi/meta-tags-check-api --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=easyapi/meta-tags-check-api",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/Akz2oncNi1ZFrvmwj/builds/vG1lVkDmTqrzUxgeW/openapi.json
