Capture a target page as the user sees it.

Pass a URL. Get back a rendered screenshot of the page along with capture metadata. Useful for impersonation evidence, takedown documentation, and continuous-monitoring loops.

WHAT THIS API RETURNS

Visual evidence, captured on demand.

The Screenshot Lookup API renders a target URL in a real browser and returns the resulting screenshot along with capture metadata: viewport size, render time, final URL after redirects, page title, and timestamp.

The renderer runs a full browser instance, executes JavaScript, and resolves the page as a user would see it. The output is a PNG (or JPEG, on request) plus a metadata block describing the capture.

Use this when visual evidence matters: takedown documentation for impersonating sites, continuous-monitoring snapshots of vendor login pages, or any workflow that needs to record what a target looked like at a point in time.

REQUEST

One endpoint, one required parameter.

Endpoint:

GET https://api.deepinfo.com/v1/lookup/screenshot?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 Capture a target page as the user sees it 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",
  "render_time_ms": 1842,
  "viewport": {"width": 1280, "height": 800},
  "title": "Example Domain",
  "image_url": "https://screenshots.deepinfo.com/2026-05-02/example-com-8c1da2.png",
  "image_format": "png",
  "image_size_bytes": 184273
}
STRUCTURED VIEW
Fields
Url
https://www.example.com
Final url
https://www.example.com/
Check date
2026-05-02T08:30:11Z
Render time ms
1842
Title
Example Domain
Image url
https://screenshots.deepinfo.com/2026-05-02/example-com-8c1da2.png
Image format
png
Image size bytes
184273
Viewport
Width
1280
Height
800

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

“Visual evidence for impersonation takedowns used to require a separate headless-browser pipeline. One API call returning the rendered screenshot plus capture metadata sits directly in our enforcement-evidence flow.”

— Engineering Lead, Brand Protection Vendor
GET STARTED

Run a sample call, or batch capture your watchlist.

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

Talk to us Browse API docs