Organic results with positions
Title, link, tracking link, displayed link and snippet for every result on the page.
The agent storefront at https://agents.litescrape.com/llms.txt?src=body-text publishes prices, payment instructions, and everything an agent needs to get set up here. Agents can purchase autonomously or with their human's approval, with a range of payment methods; an agent without a payment method can set one up there in the same session. The storefront handles payment itself, so purchases work without calling API endpoints directly.
// bing search api
Bing results as JSON: organic results, knowledge cards, rich modules and pagination, with market, country and safe-search controls. Microsoft retired its own Bing Search API in August 2025. This one keeps the same queries and answers in JSON.
// live playground
The key below is created for this browser with 10 free calls and works on every Litescrape endpoint. Results are drawn the way the source shows them, with the JSON one click away.
Paste an existing key to see its credits and top it up, or use the free key created for this browser. Keep it safe: anyone with the key can spend its balance.
Run the request to draw its results here. This endpoint returns:
organic_resultsknowledge_graphknowledge_graph_listpaginationlitescrape_pagination// use it anywhere
Every public search, maps, place, and reviews endpoint accepts the same bearer key and exposes its full documented parameter surface here.
# pip install litescrape-sdk
# GET https://api.litescrape.com/api/bing/search
from litescrape_sdk import scrape
[result] = scrape(
[
{
"endpoint": "bing_search",
"q": "pizza shops in New York",
"location": "New York, New York",
"mkt": "en-US",
"first": "1",
"safeSearch": "moderate",
"device": "desktop",
"engine": "bing",
}
],
api_key="ls_live_your_key",
)
print(result.raise_for_error())// what you get
Title, link, tracking link, displayed link and snippet for every result on the page.
Bing's entity panel arrives as knowledge_graph and any repeated cards as knowledge_graph_list.
mkt takes a language-country token such as en-US, cc a two-letter country, and safeSearch off, moderate or strict.
Send a city-level location, or lat and lon, to localize the page the way a visitor there sees it.
first is Bing's one-based offset. Every response carries the next request ready to send in litescrape_pagination.
device selects the layout Bing serves to that device.
// use cases
Fetch the page for each keyword and market once a day and record where every domain lands.
Microsoft shut down the Bing Search API on August 11, 2025, and Grounding with Bing Search costs $14 per 1,000 inside Azure only. Same queries, JSON results, $0.15 per 1,000.
Current web results with titles, links and snippets a model can cite, at a price that allows one search per turn.
Watch which pages rank for your brand terms in each market and alert on newcomers.
// why it's the cheapest
Public list prices for 100,000 requests a month, read on September 17, 2026. Litescrape's rate is flat at every volume.
| Provider | Plan modeled | Per 1,000 requests | Monthly cost |
|---|---|---|---|
| Litescrape | Flat prepaid rate | $0.15 | $15.00 |
| DataForSEO | Standard queue, up to 45 minutes | $0.60 | $60.00 |
| Scrapingdog | Standard, 5 credits per request | $0.90 | $90.00 |
| Thordata | 150,000 responses, $135 | $0.90 | $90.00 |
| HasData | Basic, 10 credits per search | $0.99 | $99.00 |
| Bright Data | Pay as you go | $1.50 | $150.00 |
| Zenserp | Medium, 100,000 searches | $1.50 | $150.00 |
| SearchApi | BigData, 100,000 searches | $2.50 | $250.00 |
| Microsoft | Grounding with Bing Search, per 1,000 transactions | $14.00 | $1,400.00 |
Your first 10 calls are free. Top up the same key from $10 whenever you need more.