Bing Search API
Built for SEO teams and AI agents diversifying SERP sources beyond Google. Real-time Bing web results in JSON via one POST — same endpoint and contract as the Google Search API, swap one parameter.
Try in Playground →Live Bing SERP Preview
q="World Cup 2026"
Set "html": 1 in
your request body to receive the raw SERP HTML alongside structured JSON data.
API Endpoint
https://www.searchcans.com/api/v1/search Code Examples
curl -X POST "https://www.searchcans.com/api/v1/search" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"t": "bing",
"s": "World Cup 2026",
"country": "us",
"page": 1
}' Example Response
{
"code": 0,
"data": {
"id": "q_bing_worldcup2026",
"organic": [
{
"page": 1,
"position": 1,
"title": "World Cup 2026 | Match schedule, fixtures & stadiums - FIFA",
"link": "https://www.fifa.com/en/tournaments/mens/worldcup/canadamexicousa2026/articles/match-schedule-fixtures-results-teams-stadiums",
"snippet": "On this page you'll find the full FIFA World Cup 2026™ schedule, including all match fixtures, dates and venues, plus live results from the games played across 16 host cities in Canada,...",
"displayed_link": "www.fifa.com",
"source": "www.fifa.com"
},
{
"page": 1,
"position": 2,
"title": "2026 FIFA World Cup - Wikipedia",
"link": "https://en.wikipedia.org/wiki/2026_FIFA_World_Cup",
"snippet": "OverviewFormat and expansionHost selectionVenuesTeamsMatch scheduleStatisticsMarketingThe 2026 FIFA World Cup, marketed as FIFA World Cup 26, will be the 23rd FIFA World Cup, the quadrennial international men's soccer championship contested by the national teams of the member ass… (544 chars total)",
"displayed_link": "en.wikipedia.org",
"source": "en.wikipedia.org"
},
{
"page": 1,
"position": 3,
"title": "FIFA World Cup 2026 Schedule: Dates, Times, …",
"link": "https://worldcupwiki.com/schedule/",
"snippet": "FIFA World Cup 2026 full schedule: dates, kickoff times, matchups, and venue locations for all 104 matches. Updated from group stage to the Final.",
"displayed_link": "worldcupwiki.com",
"source": "worldcupwiki.com"
},
{
"page": 1,
"position": 4,
"title": "2026 FIFA World Cup schedule and dates - USA TODAY",
"link": "https://www.usatoday.com/story/sports/soccer/2026/04/16/2026-fifa-world-cup-information/89639563007/",
"snippet": "Apr 16, 2026 · The 2026 FIFA World Cup is less than two months away, featuring 48 teams and 104 matches across 11 cities. Here is the full schedule.",
"displayed_link": "www.usatoday.com",
"source": "www.usatoday.com"
},
{
"page": 1,
"position": 5,
"title": "2026 FIFA World Cup | Teams, Location, Selection,",
"link": "https://www.britannica.com/event/2026-FIFA-World-Cup",
"snippet": "1 day ago · The 2026 FIFA World Cup will be played from June 11 to July 19 and …",
"displayed_link": "www.britannica.com",
"source": "www.britannica.com"
},
{
"page": 1,
"position": 6,
"title": "2026 World Cup dates, venues, host cities and format for USA, …",
"link": "https://www.skysports.com/football/news/12098/13272067/2026-world-cup-dates-venues-host-cities-format-and-schedule-for-usa-canada-and-mexico-tournament",
"snippet": "Apr 27, 2026 · Where is the 2026 World Cup? The 2026 tournament will take place across 16 cities in three North American countries: the United States, Canada and Mexico.",
"displayed_link": "www.skysports.com",
"source": "www.skysports.com"
}
]
},
"msg": "success"
} Request Body (JSON)
| Parameter | Type | Description |
|---|---|---|
| t | string | Search engine type "bing" |
| s | string | Search query "World Cup 2026" |
| country | string | Country code (ISO 3166-1 alpha-2) "us" |
| page | integer | Page number (starts from 1) 1 |
| html | integer | Set to 1 to include raw SERP HTML in response 1 |
API Response — Organic Results from Microsoft Bing
JSON output includes structured organic results from Bing. Set "html": 1 in the request body to also receive the raw SERP HTML.
organic[]
Blue-link results with title, link, snippet, displayed_link, and position.
title
Page title as displayed in Bing search results.
link
Full URL of the result page.
snippet
Text excerpt shown below the result title on Bing.
position
Rank of the result on the Bing results page (1-indexed).
displayed_link
Friendly URL shown in the result, as displayed by Bing.
Same Endpoint, Dual Coverage — Google + Bing Search Results
Switch between Google and Bing results using the same API key and endpoint — no separate integration needed.
Change "t": "bing" to "t": "google" to switch engines.
Use both from one integration for dual-engine coverage in AI agents, RAG pipelines, and data workflows.
Bing News Search API — Real-Time Headlines and Media Monitoring
SearchCans returns Bing’s real-time web results, which include recent news articles indexed by Bing. For dedicated news monitoring, set "t": "bing" and filter results by recency. Note: this returns live Bing search results — not a historical news archive.
Get 100 Free Credits — No Card Required
Get 100 free credits on sign up. No credit card required.