# Bing Trends Scraper
## Overview
| Property | Value |
|----------|-------|
| **Status** | private |
| **Method** | `GET` |
| **Endpoint** | `/v1/website/rendering` |
| **Base URL** | `https://api.browsersolver.com` |
| **Credit Cost** | 2 credits per call |
| **Documentation** | https://www.browsersolver.com/library/website-rendering-bing-trends-scraper |
## Access
This endpoint is **private**. Requests return HTTP 403 until access is granted. There is no self-serve request-access button. Open a support ticket from the dashboard Help desk (https://app.browsersolver.com/app?returnTo=help-desk/tickets/new) and include the endpoint path, your use case, target fields, and expected volume.
## Description
Capture post-render HTML from Bing Trends public pages for monitoring and enrichment pipelines.
## Authentication
- **Key Name:** `x-api-key`
- **Location:** HTTP Header
- **Get an API key:** https://app.browsersolver.com/register
## Example Request
```bash
curl --location --request GET 'https://api.browsersolver.com/v1/website/rendering' \
--header 'Content-Type: application/json' \
--header 'x-api-key: YOUR_API_KEY'
```
## Example Response
### Bing Trends HTML (reference/bing)
```json
Bing26 Sep 2025 | Learn to scrape email addresses from websites using Python with regex patterns, HTML parsing, and obfuscation handling techniques for contact data
Wait for selectors before capturing HTML.
Organic modules and ad placements.
Bing Trends DOM built for BrowserSolver rendering examples.
```
## Documentation
## What it does
Send a Bing Trends URL to **Bing Trends Scraper** and receive the post-render HTML document.
## Request
```
GET https://api.browsersolver.com/v1/website/rendering?query=https://www.bing.com/search?q=trending+tech+news
```
| Field | Required | Notes |
|---|---|---|
| `query` | yes | Absolute Bing Trends URL |
## Returns
HTML string after JavaScript.
## Typical jobs
- Feed enrichment pipelines
- Prototype extractors
- Collect JS-heavy pages
**Pricing:** 2 credits per successful call via [Website Rendering](/v1/website/rendering).
## Workflows
- Track SERP layouts over time
- Prototype organic result extractors
- Archive AI overview and ad modules
## Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| `query` | string | yes | Absolute Bing Trends URL |
| `wait_in_seconds` | number | no | Extra pause after load (0-30) |
| `wait_for` | string | no | CSS/XPath selector that must appear |
| `block_ads` | boolean | no | Drop ad traffic during render |
| `timeout` | number | no | Max render seconds (default 30) |
## Tips
- Prefer [Website Crawler](/v1/website/crawler) if markup arrives without JS.
- Use [Website WebUnlocker](/v1/website/webunlocker) only on approved, heavily protected hosts.