GET /enrich
Enrich a URL with brand data, company info, and IAB classification in a single request. Costs 20 credits.
Overview
/enrich is the most comprehensive endpoint. It runs brand extraction, company info extraction, and website classification in parallel and returns all results in a single response.
This is equivalent to calling /brand + /company + /classify together, but more efficient because the page is only loaded once.
Use /enrich when you want a complete profile of a domain.
Cost comparison
| Approach | Credits | Requests |
|---|---|---|
/enrich | 20 | 1 |
/brand + /company + /classify | 20 | 3 |
Example request
Example response
All parameters
/enrich accepts the same parameters as /brand for controlling color extraction and screenshot settings:
| Parameter | Default | Description |
|---|---|---|
url | required | Website URL to enrich |
screenshotColors | — | Extract N dominant screenshot colors (2–12) |
css | false | Extract colors from CSS source |
html | false | Extract colors from HTML source |
javascript | false | Extract colors from JavaScript source |
screenshotWidth | 1440 | Viewport width (320–3000) |
screenshotHeight | 900 | Viewport height (320–3000) |
screenshotFormat | jpeg | Screenshot format: jpeg, png, pdf |
screenshotFullPage | false | Capture full scrollable height |
disableAdblocker | false | Disable the built-in adblocker |
filterAchromatic | false | Exclude near-white, near-black, and greyscale colors |
Authorizations
Your Prefetch API key. Obtain one from the dashboard.
Query Parameters
The website URL to process. https:// is prepended automatically if no protocol is provided.
"https://stripe.com"
Extract N dominant colors from the page screenshot. Range: 2–12.
2 <= x <= 12Extract colors from linked CSS files. Pass true to enable.
Extract colors from inline HTML. Pass true to enable.
Extract colors from linked JS files. Pass true to enable.
Viewport width in pixels. Range: 320–3000. Default: 1440.
320 <= x <= 3000Viewport height in pixels. Range: 320–3000. Default: 900.
320 <= x <= 3000Screenshot format. Default: jpeg.
jpeg, png, pdf Capture the full scrollable page. Pass true to enable.
Disable the built-in adblocker. Pass true to enable.
Exclude near-white, near-black, and greyscale colors from results. Pass true to enable.