# Bing Organic Search (serp-x402)

> Bing Organic Search (serp-x402) is a paid API for AI agents from serp-x402.vercel.app, paid per call via x402, $0.004/call, status down (last checked 2026-09-15, last successful call 2026-04-24).

Returns Bing organic search results including URLs, titles, descriptions, and ranking positions for a given query.

## Facts

- Endpoint: GET https://serp-x402.vercel.app/serp/bing
- Price: $0.004/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Last successful call: 2026-04-24
- Success rate: 100% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/serp-x402-vercel-app-ca922b31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hNSZW5c2pp5BLfP_lXGTO

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 serp-x402-vercel-app-ca922b31
```

Example prompt: Search Bing for 'best noise-canceling headphones 2025' and give me the top 10 organic results from the United States — I want to compare them against what Google is showing.

## When to prefer this

Use this endpoint when you need Bing-specific search rankings, want to cross-reference Google results with an alternative ranking signal, or when Google data is insufficient or unavailable. Also useful for SEO research comparing ranking differences between search engines.

## Known failure modes

- Missing required query parameter 'q' returns validation error
- Invalid or empty query string returns no results
- Requesting more than 100 results exceeds the max limit
- Network timeout if Bing is slow to respond
- Rate limiting or payment failure returns 402

## How this service works

Bing organic search results. Alternative to Google with different ranking signals — useful for cross-referencing or when Google data isn't sufficient.

## Output

Returns a structured list of organic Bing search results including position, URL, domain, page title, and description snippet, along with the keyword used and total results count.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "machine learning",
   "num": "10"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query"
      },
      "num": {
       "type": "string",
       "description": "Number of results (default 10, max 100)"
      },
      "location": {
       "type": "string",
       "description": "Location for results (default: United States)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "keyword": {
       "type": "string"
      },
      "results": {
       "type": "array"
      },
      "total_results": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/serp-x402-vercel-app-ca922b31/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from serp-x402.vercel.app](https://www.zero.xyz/host/serp-x402.vercel.app/llms.txt)
