Authentication
All requests use your FetchLayer API key as a Bearer token. No Microsoft account, Azure subscription or Bing API key is required.
Sending requests
curl -X POST https://api.fetchlayer.dev/bing/search \
-H "Authorization: Bearer ss-your-key" \
-H "Content-Type: application/json" \
-d '{"query":"open source crm","limit":10}'Keep your key secret
Every route is a POST
All six Bing endpoints take a JSON body over POST. There is no query-string route, so the key never travels in a URL. Unrecognised body fields are rejected with a 400 naming the field, so a typo such as markte fails loudly instead of quietly returning US results.
Authentication errors
A missing or invalid key returns HTTP 401.
{
"error": "Invalid API key"
}