Litescrape sells to AI agents - live prices and self-serve payment

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.

← All documentation

// Bing documentation

Bing Search API

Bing search results: organic results, knowledge cards, rich modules, market and safe-search controls and pagination. A replacement for the retired Microsoft API.

GET https://api.litescrape.com/api/bing/search

// from request to code

Integrate Bing Search

Build your request and copy it into your stack. Or let your coding agent set it up.

APIBing Search
More options 9
Search query

Send a Bing query and optional native display or date filters.

Search origin

Optionally provide a named location, coordinates, or both.

Market & pagination

Choose at most one localization token and the native organic offset.

Content & device

Use bounded HTTP request profiles; no browser is started.

Your request updates the code instantly.

Open the Playground →
https://mcp.litescrape.com/mcp

Add the server URL to your MCP client, then call the tool below. A free allowance is available without a key.

tools/call.json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "bing_search",
    "arguments": {
      "q": "pizza shops in New York",
      "location": "New York, New York",
      "mkt": "en-US",
      "first": 1,
      "safeSearch": "moderate",
      "device": "desktop"
    }
  }
}

// request reference

Bing Search parameters

Send query parameters with GET /api/bing/search. Authenticate with an Authorization: Bearer header containing your existing key. Keep keys on your server, not in browser code.

The groups below list every request field, including compatibility restrictions. Read the extended reference for detailed types, defaults, parameter combinations and additional examples.

Search query

Send a Bing query and optional native display or date filters.

q
Query

Required Bing query, up to 2,048 characters. Search operators are supported.

Example / input hint: pizza shops in New York

filters
Bing filters

Native Bing display or date filters, up to 8,192 characters with no controls.

Example / input hint: ex1:"ez5_20069_20433"

Search origin

Optionally provide a named location, coordinates, or both.

location
Location

Optional city-level search origin, up to 256 characters.

Example / input hint: New York, New York

lat
Latitude

Optional latitude from -90 through 90.

Example / input hint: 40.7128

lon
Longitude

Optional longitude from -180 through 180.

Example / input hint: -74.0060

Market & pagination

Choose at most one localization token and the native organic offset.

mkt
Market

Bing language-country market. Cannot be combined with cc.

Example / input hint: en-US

cc
Country

Two-letter country of origin. Cannot be combined with mkt.

Example / input hint: US

first
First result

One-based organic offset, up to 9,007,199,254,740,991.

Example / input hint: 1

Content & device

Use bounded HTTP request profiles; no browser is started.

safeSearch
SafeSearch

Bing adult-content setting. Input is normalized case-insensitively.

Accepted values / omission behavioroffmoderate moderate (default)strict
device
Device

Selects a desktop, tablet, or mobile HTTP user-agent profile.

Accepted values / omission behaviordesktop desktop (default)tabletmobile

// response

Work with the complete JSON response

Response groups include organic_results, knowledge_graph, knowledge_graph_list, pagination, litescrape_pagination. Groups and fields depend on the upstream result.

The SDK examples use raise_for_error() or raiseForError() so API errors are not mistaken for successful results.

More Bing APIs