mintel.com APImintel.com ↗
Access Mintel's market research catalog via API. Search reports by keyword or industry, retrieve full report details, pricing, TOC, and free intelligence downloads.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/45643628-a711-452f-bc9e-0dc47402f096/get_homepage_free_downloads' \ -H 'X-API-Key: $PARSE_API_KEY'
Scrapes the Mintel homepage for free intelligence download cards. Returns an array of available free reports with their titles and URLs.
No input parameters required.
{
"type": "object",
"fields": {
"downloads": "array of free download objects with title, description, and url"
},
"sample": {
"data": {
"downloads": [
{
"url": "https://www.mintel.com/insights/consumer-research/global-consumer-trends/",
"title": "Free Report",
"description": null
}
]
},
"status": "success"
}
}About the mintel.com API
The Mintel API provides 6 endpoints covering the Mintel Store and Mintel homepage, returning structured data across report listings, full report details, and free intelligence downloads. The search_store_reports endpoint accepts keyword queries and returns up to 12 paginated results per page, each with title, price, publication date, description, and industry. get_store_report_detail exposes per-report fields including the table of contents, analyst information, tags, and related reports.
Report Discovery and Search
The search_store_reports endpoint accepts a query string (e.g. 'coffee' or 'sustainability') and an optional page integer for pagination. Each result in the reports array includes title, url, price, published_at, description, and industry. The total_count field lets you calculate how many pages exist. For browsing by category rather than keyword, list_store_reports_by_industry filters results by an exact, case-sensitive industry value such as 'Coffee' or 'Beauty and Cosmetics'; use list_all_store_industries first to retrieve valid industry names and their subcategories.
Full Report Details
get_store_report_detail takes the full URL of any store report page and returns the complete summary, table_of_contents as an array of section headings, price, tags (covering industry, report type, and market), related_reports, and an analyst object with name, role, and quote fields. The analyst field may be null for some reports.
Free Intelligence and Landing Pages
get_homepage_free_downloads returns all free download cards currently featured on the Mintel homepage, each with a title, description, and url. To go deeper on any individual free download, pass its URL to get_free_download_landing_page, which returns structured sections (each with heading and text), ctas, expert_quotes, a form_id for the associated Microsoft Dynamics form, and the page description.
Industry Taxonomy
list_all_store_industries returns the full hierarchical navigation taxonomy from the Mintel Store. Each entry in the industries array includes a name, url, and a subcategories array with nested name and url pairs. This endpoint requires no inputs and is useful for building category browsers or validating industry filter values before calling list_store_reports_by_industry.
- Build a market research discovery tool that searches Mintel reports by product category keyword and surfaces price and publication date.
- Monitor new reports published within a specific industry by paginating
list_store_reports_by_industryand trackingpublished_atvalues. - Aggregate table-of-contents data from multiple reports via
get_store_report_detailto map common research themes across a sector. - Collect analyst quotes and report summaries at scale to feed a competitive intelligence database.
- Index the full Mintel Store industry taxonomy using
list_all_store_industriesto power a filterable category navigation UI. - Retrieve current free intelligence download titles and URLs from the homepage to alert subscribers when new free reports appear.
- Extract CTA links and expert quotes from free download landing pages to support content benchmarking research.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Mintel offer an official developer API?+
What does `get_store_report_detail` return beyond the report title and price?+
get_store_report_detail returns a summary string with the full report description, a table_of_contents array of section headings, a tags array covering industry, report type, and market classification, a related_reports array with titles and URLs, and an analyst object containing the analyst's name, role, and quote. The analyst field may be null for some reports.Are report purchase, download, or full-text content endpoints available?+
How does pagination work for `search_store_reports` and `list_store_reports_by_industry`?+
page integer parameter to retrieve subsequent pages. The total_count field in the response indicates the total number of matching reports, which you can divide by 12 to determine the total page count.Is report pricing data available in currencies other than USD?+
price field returned by both listing and detail endpoints reflects the price as displayed on the Mintel Store page, which is typically shown in USD. Multi-currency pricing is not currently exposed. You can fork the API on Parse and revise it to target locale-specific store URLs if Mintel surfaces regional pricing on those pages.