logo
Web ScrapingExtract Meta Tags

Extract Meta Tags

Extract OG, Twitter Card, and SEO meta tags from any URL.

Pricing: 1 credit per call

curl -X POST "https://v3-api.texau.com/api/v1/web_meta_tags" \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
  "url": "https://example.com",
  "cache": true,
  "cache_bust": true
}'
{
  "data": {
    "seo": {
      "title": "example_string",
      "description": "example_string"
    },
    "og": {},
    "twitter": {},
    "favicon": "example_string",
    "hreflang": {}
  },
  "meta": {
    "cache_hit": true,
    "execution_time_ms": 42
  }
}
POST
/web_meta_tags
POST
API Key (header: x-api-key)
x-api-keystring
Required

Your TexAu API key. Contact TexAu to obtain one.

Your TexAu API key. Contact TexAu to obtain one.
Content-Typestring
Required

The media type of the request body

Options: application/json
urlstring
Required

URL to extract meta tags from

cacheboolean

Use cached data if available

cache_bustboolean

Force fresh fetch, ignoring cache

Request Preview
Response

Response will appear here after sending the request

Authentication

header
x-api-keystring
Required

API Key for authentication. Your TexAu API key. Contact TexAu to obtain one.

Body

application/json
urlstring
Required

URL to extract meta tags from

cacheboolean

Use cached data if available

cache_bustboolean

Force fresh fetch, ignoring cache

Responses

dataobject
metaobject