Live web-page data for a target, in one call.

Pass a URL. Get back the rendered page metadata: status code, redirect chain, response headers, page title, and indexable text. Useful for content surveillance and impersonation detection.

WHAT THIS API RETURNS

Live web-fetch metadata, without managing the crawl.

The Webdata Lookup API performs a live web fetch against a target URL and returns rendered page metadata: HTTP status, redirect chain, response headers, page title, meta description, indexable text, and content fingerprints. The fetch is performed from Deepinfo's distributed crawl pool.

Use this when a target URL needs to be checked as a user would see it, not as a passive scanner indexed it. Brand-impersonation pipelines, phishing-content detection, and continuous-monitoring loops over external pages all benefit.

Pair with the Domain Detail or SSL Lookup APIs to combine page-level and host-level signals against the same target.

REQUEST

One endpoint, one required parameter.

Endpoint:

GET https://api.deepinfo.com/v1/lookup/webdata?url={url}

Parameters (placeholder, awaiting confirmation):

Name In Type Required Description
url query string Yes A target URL such as https://www.example.com.

Authentication is by API token in the request header. See docs.deepinfo.com for the full request reference.

SAMPLE RESPONSE

See what the API returns.

Real response structure for the Live web-page data for a target, in one call endpoint. Field coverage may vary based on query parameters and data availability.

JSON RESPONSE
{
  "url": "https://www.example.com",
  "final_url": "https://www.example.com/",
  "check_date": "2026-05-02T08:30:11Z",
  "status_code": 200,
  "redirect_chain": [
    {"from": "http://example.com", "to": "https://www.example.com/", "status": 301}
  ],
  "headers": {
    "server": "nginx",
    "content-type": "text/html; charset=UTF-8"
  },
  "title": "Example Domain",
  "meta_description": "Example Domain. This domain is for use in illustrative examples in documents.",
  "content_fingerprint_sha256": "8c1d...a2"
}
STRUCTURED VIEW
Fields
Url
https://www.example.com
Final url
https://www.example.com/
Check date
2026-05-02T08:30:11Z
Status code
200
Title
Example Domain
Meta description
Example Domain. This domain is for use in illustrative examples in documents.
Content fingerprint sha256
8c1d...a2
Redirect chain
Count
1
First from
http://example.com
First to
https://www.example.com/
First status
301
Headers
Server
nginx
Content-type
text/html; charset=UTF-8

Sample response shown. Real responses depend on query parameters, data availability, and API version. Talk to us for full schema documentation.

“Rendered page metadata in one call, with redirect chains and response headers, replaced a Puppeteer pipeline that was a maintenance burden. Content surveillance integrations stopped breaking on every Chrome update.”

— Engineering Director, Content Surveillance Platform
GET STARTED

Run a sample call, or batch lookup your URL set.

We'll set up token access and answer schema questions on a call.

Talk to us Browse API docs