# Bing SERP Organic Results

> Bing SERP Organic Results is a paid API for AI agents from agent.connskill.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns organic Bing search results for a given keyword, optionally filtered by language and location

## Facts

- Endpoint: POST https://agent.connskill.com/v1/bing-serp
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bing-serp-organic-results-aef7ffff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IpffxVwvji4h_qmcF75mc

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability bing-serp-organic-results-aef7ffff -d '<json body>'
```

Example prompt: Pull the organic Bing search results for the keyword 'best project management software' in English for the United States so I can see what pages are ranking there.

## When to prefer this

Choose this endpoint when you specifically need Bing organic search results rather than Google, or when you want to compare search engine diversity. Especially useful for markets where Bing has meaningful share (e.g. US desktop, enterprise users), for SEO strategies that target Bing explicitly, or to identify ranking differences between the two major search engines. Prefer over Google SERP endpoints when your target audience skews toward Microsoft products or older demographics.

## Known failure modes

- Missing required 'keyword' field returns a validation error
- Invalid language_code format may return default or error response
- Unrecognized location_code may fall back to a default region or return an error
- Rate limiting or payment failure (x402) if the $0.1 USDC per call is not properly handled
- Empty results if Bing has no indexed pages for a very niche or misspelled keyword

## How this service works

Organic Bing results for a keyword — the second search engine, often different from Google

## Output

A structured JSON object containing organic Bing search result listings for the queried keyword, including page titles, URLs, and snippets, filtered by the specified language and location.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "keyword"
 ],
 "properties": {
  "keyword": {
   "type": "string",
   "description": "Search term. A one-element list is also accepted; its first entry is used."
  },
  "language_code": {
   "type": "string",
   "description": "ISO language code, defaults to de"
  },
  "location_code": {
   "type": "number",
   "description": "Location code (2276 = Germany, 2840 = United States)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "description": "Organic Bing results for a keyword — the second search engine, often different from Google"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bing-serp-organic-results-aef7ffff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.connskill.com](https://www.zero.xyz/host/agent.connskill.com/llms.txt)
