Enrich a URL with brand data, company info, and IAB classification in a single request. Costs 3 credits.
Documentation Index
Fetch the complete documentation index at: https://prefetch.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
/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.
| Approach | Credits | Requests |
|---|---|---|
/enrich | 3 | 1 |
/brand + /company + /classify | 5 | 3 |
/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 |
width | 1440 | Viewport width (320–5000) |
height | 900 | Viewport height (320–5000) |
format | jpeg | Screenshot format: jpeg, png, webp |
full_page | false | Capture full scrollable height |
Your Prefetch API key. Obtain one from the dashboard.
The website URL to process. http:// is prepended automatically if no protocol is provided. Maximum 2048 characters.
"https://stripe.com"
Extract N dominant colors from the page screenshot. Range: 2–12.
2 <= x <= 12Extract colors from CSS source code. Default: false.
Extract colors from HTML source code. Default: false.
Extract colors from JavaScript source code. Default: false.
Viewport width in pixels. Range: 320–5000. Default: 1440.
320 <= x <= 5000Viewport height in pixels. Range: 320–5000. Default: 900.
320 <= x <= 5000Image format. Default: jpeg.
jpeg, png, webp Capture full scrollable page height. Default: false.