Inspect

Page Inspection API

Retrieve a comprehensive technical inventory of any webpage: HTTP status, final redirected URL, title, description, OpenGraph tags, Twitter cards, JSON-LD schemas, heading hierarchy, internal/external links, and load time.

POST/v1/inspectCost: 1 Credit

Code Example

curl -X POST https://api-rendernest.duckdns.org/v1/inspect \
  -H "Authorization: Bearer wf_live_xxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com"
  }'

Response Example

{
  "success": true,
  "request_id": "req_1725432170_9b8a1c",
  "data": {
    "url": "https://example.com",
    "final_url": "https://example.com",
    "status_code": 200,
    "title": "Example Domain",
    "description": "Example website description",
    "language": "en",
    "canonical": "https://example.com",
    "favicon": "https://example.com/favicon.ico",
    "open_graph": {
      "title": "Example Domain",
      "type": "website"
    },
    "twitter_card": {
      "card": "summary_large_image"
    },
    "json_ld": [],
    "headings": [
      { "level": 1, "text": "Example Domain" }
    ],
    "links": [
      { "href": "https://www.iana.org/domains/example", "text": "More info", "is_external": true }
    ],
    "images": [],
    "content": { "word_count": 27, "paragraphs_count": 2 },
    "technical": { "load_time_ms": 138 }
  }
}