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 Maps API

Bing Maps listings, 30 a page with rating, address, phone, website, hours and coordinates, for any query and map center, or one place by ID.

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

// from request to code

Integrate Bing Maps

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

APIBing Maps
More options 5
Map lookup

Search Bing Maps listings or resolve one native entity ID.

Your request updates the code instantly.

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

Add the server URL to your MCP client with an Authorization: Bearer header containing your API key, then call the tool below.

Bing Maps is available through the Python SDK, TypeScript SDK, and cURL. Choose one of those tabs to use this API.

// request reference

Bing Maps parameters

Send query parameters with GET /api/bing/maps. 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.

Map lookup

Search Bing Maps listings or resolve one native entity ID.

q
Query

Search query; optional when place_id is present.

Example / input hint: coffee Austin Texas

place_id
Place ID

Bing Maps entity identifier for a detail lookup.

Example / input hint: YN…

cp
Center point

Optional latitude~longitude viewport center.

Example / input hint: 30.2672~-97.7431

setlang
Language

Bing Maps interface language.

Example / input hint: en-US

first
Start offset

Offset from 0 through 10,000.

Example / input hint: 0

count
Result count

1 through 30 results.

Example / input hint: 10

// response

Work with the complete JSON response

Response groups include local_results, place_results. 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