Meta Tag Fetcher
Fetch existing meta tags, including Open Graph, Twitter tags, and Schema.org markup from any webpage.
POST
1https://api-buildflow.modal.run/api/meta-tag-fetcher
Request Parameters
- url:
string
(required) – The URL of the webpage to fetch meta tags from.
Request Schema
1{
2 "url": "string"
3}
Success Response
1{
2 "title": "string",
3 "description": "string",
4 "keywords": "string",
5 "author": "string",
6 "ogTitle": "string",
7 "ogDescription": "string",
8 "ogImage": "string",
9 "ogUrl": "string",
10 "ogType": "string",
11 "ogLocale": "string",
12 "ogSiteName": "string",
13 "twitterCard": "string",
14 "twitterTitle": "string",
15 "twitterDescription": "string",
16 "twitterImage": "string",
17 "twitterSite": "string",
18 "twitterCreator": "string",
19 "schemaMarkup": "string",
20 "canonicalUrl": "string",
21 "viewport": "string",
22 "robots": "string"
23}
Error Response
1{
2 "error": "string"
3}
Example Usage
1
2curl -X POST 'https://api-buildflow.modal.run/api/meta-tag-fetcher' \
3-H 'Content-Type: application/json' \
4-H 'x-api-key: your-api-key' \
5-d '{
6 "url": "example-url"
7}'
8