logo
Web ScrapingWebsite Intelligence (Flagship)

Website Intelligence (Flagship)

Flagship endpoint that runs meta_tags, json_ld, pixels, tech_stack, social_links, emails, SSL certificate analysis, and response headers inspection in parallel. Returns a comprehensive website intelligence report including SEO scoring.

Pricing: 5 credits per call

curl -X POST "https://v3-api.texau.com/api/v1/website_intelligence" \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
  "url": "https://example.com",
  "modules": [
    "example_string"
  ],
  "cache": true
}'
{
  "data": {
    "meta_tags": {},
    "json_ld": {},
    "pixels": {},
    "tech_stack": {},
    "social_links": {},
    "emails": {},
    "ssl_certificate": {},
    "response_headers": {},
    "seo_score": 3.14,
    "seo_issues": [
      "example_string"
    ]
  },
  "meta": {
    "cache_hit": true,
    "execution_time_ms": 42
  }
}
POST
/website_intelligence
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 analyze

modulesarray

Specific modules to run (defaults to all). Options include meta_tags, json_ld, pixels, tech_stack, social_links, emails, ssl_certificate, response_headers.

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 analyze

modulesarray

Specific modules to run (defaults to all). Options include meta_tags, json_ld, pixels, tech_stack, social_links, emails, ssl_certificate, response_headers.

Responses

dataobject
metaobject