Endpoints
Base URL for all endpoints below: https://serpapi.org/api/v1
GET/webs-search
Organic Bing web results, with a Yahoo/Bing-RSS fallback chain if the primary scrape returns nothing.
Accepts all common parameters.
GET /api/v1/webs-search?keyword=tesla+model+y&gl=US&hl=en&token=YOUR_API_KEY
{
"request": {"keyword":"tesla model y","page":1,"size":10,"gl":"US","hl":"en","cc":"US"},
"data": {
"items": [
{
"position": 1,
"cate_slug": "https://www.tesla.com > modely",
"title": "Model Y – Electric Midsize SUV | Tesla",
"link": "https://www.tesla.com/modely",
"description": "Learn about Model Y, a midsize electric SUV with award-winning safety, convenient technology features and seating for up to five."
}
// ...more items
],
"keyword_related": ["tesla model y price", "tesla model y interior"],
"questions": [],
"total_results": "1,230,000 results",
"search_engine": "bing"
},
"in_seconds": 0.29
}
GET/images-search
Image results from Bing Images. Accepts all common parameters.
GET /api/v1/images-search?keyword=tesla+model+y+interior&token=YOUR_API_KEY
{
"request": {"keyword":"tesla model y interior","page":1,"size":10,"gl":"US","hl":"en"},
"data": {
"images": [
{
"id": "bUSOAERl",
"title": "Tesla Model Y Interior Layout & Technology | Top Gear",
"purl": "https://www.topgear.com/car-reviews/tesla/model-y/interior",
"murl": "https://www.topgear.com/.../3-Tesla-Model-Y-review-2025.jpg",
"turl": "https://ts2.mm.bing.net/th?id=OIP.bUSOAERl...&pid=15.1"
}
// ...more items
]
},
"in_seconds": 0.24
}
Use turl (thumbnail) for previews and murl for the full-size source image.
GET/videos-search
Video results from Bing Video. Accepts all common parameters.
GET /api/v1/videos-search?keyword=iphone+16+pro+review&token=YOUR_API_KEY
{
"request": {"keyword":"iphone 16 pro review","gl":"US","hl":"en","page":1,"size":10},
"data": {
"videos": [
{
"position": 1,
"title": "iPhone 16 Pro Review in 2026.",
"desc": "iPhone 16 Pro Review in 2026. from YouTube · Duration: 6 minutes 15 seconds ...",
"url": "https://www.youtube.com/watch?v=jqxMz2LvWK4",
"images": {"small": "...", "medium": "...", "large": "..."},
"channel": "TBC Unfiltered",
"time": "06:15",
"view": "9.8K views",
"uploaded_at": "2026-04-03"
}
// ...more items
]
},
"in_seconds": 0.27
}
GET/news-search
News results from Bing News. Accepts all common parameters.
GET /api/v1/news-search?keyword=artificial+intelligence+regulation&token=YOUR_API_KEY
{
"request": {"keyword":"artificial intelligence regulation","page":1,"gl":"US","hl":"en"},
"data": {
"items": [
{
"position": 1,
"title": "AI regulation bill presented to business leaders at summit",
"url": "https://example.com/ai-regulation-bill",
"img": "https://www.bing.com/th?id=...",
"domain_img": "https://www.bing.com/th?id=...",
"desc": "Short snippet of the article...",
"source": "example.com"
}
// ...more items
]
},
"in_seconds": 0.31
}
GET/shopping-search
Product listings from Bing Shopping. Accepts all common parameters.
GET /api/v1/shopping-search?keyword=iphone+16&token=YOUR_API_KEY
{
"request": {"keyword":"iphone 16","cc":"US","gl":"US","hl":"en","size":8,"page":1},
"data": {
"products": [
{
"position": 1,
"title": "iPhone 16 / 128GB / Black (SIM Free)",
"price": "$899.00",
"seller": "Amazon.com",
"thumbnail": "https://thf.bing.com/th?id=OPHS...",
"link": "https://www.bing.com/shop/productdetails?q=iphone+16&goid=452004967180..."
}
// ...more items
]
},
"in_seconds": 1.53
}
There is also a GET /api/v1/product-detail endpoint (same auth) that resolves a single Bing shopping URL into full product detail — pass the product url.
GET/autocomplete
Bing search-suggestion autocomplete for a partial or full keyword.
| Parameter | Type | Required |
keyword | string | Yes |
GET /api/v1/autocomplete?keyword=tesla+model+y&token=YOUR_API_KEY
{
"request": {"keyword":"tesla model y","gl":"US","hl":"en"},
"data": {
"suggestions": [
{"value": "tesla model y"},
{"value": "tesla model y 2026"},
{"value": "tesla model y price"}
// ...more items
],
"search_type": "autocomplete"
},
"in_seconds": 0.32
}
GET/scholar-search
Academic results from Google Scholar — the only endpoint sourced from Google rather than Bing.
| Parameter | Type | Default |
keyword | string | required |
gl / hl / page / size | — | same as common parameters (no time) |
GET /api/v1/scholar-search?keyword=machine+learning+transformers+paper&token=YOUR_API_KEY
{
"request": {"keyword":"machine learning transformers paper","page":1,"size":8,"gl":"US","hl":"en","engine":"google"},
"data": [
{
"position": 1,
"title": "A survey of deep learning architectures in modern machine learning systems",
"link": "https://ashpress.org/index.php/jcts/article/view/204",
"publicationInfo": "T Mowbray - Journal of Computer Technology and Software, 2025",
"snippet": "This paper has presented a comprehensive survey of these architectural developments...",
"year": 2025,
"citedBy": 15,
"pdfUrl": "https://ashpress.org/index.php/jcts/article/download/204/159"
}
// ...more items
],
"in_seconds": 0.04
}
GET/maps-search
Local business/place results from Bing Maps.
| Parameter | Type | Default | Description |
keyword | string | required | e.g. "coffee near new york" |
cp | string | auto | Map center as lat~lng. |
lvl | integer | 11 | Zoom level, 1–22. |
gl / hl / page / size | — | — | same as common parameters |
GET /api/v1/maps-search?keyword=coffee+near+new+york&token=YOUR_API_KEY
{
"data": [
{
"position": 1,
"title": "Black Fox Coffee",
"category": "Cafe",
"address": "70 Pine St, New York, NY 10005",
"phone": "(917) 742-0133",
"website": "http://www.blackfoxcoffee.com/",
"open_status": "Open",
"open_hours": "Open until 5 pm",
"latitude": 40.7064,
"longitude": -74.0077,
"map_url": "https://www.bing.com/maps/search?..."
}
// ...more items
],
"in_seconds": 0.04
}
GET/reviews-search
Review snippets aggregated for a business or place name. Accepts keyword, gl, hl, page, size like Scholar Search.
GET /api/v1/reviews-search?keyword=Apple+Store+Fifth+Avenue+reviews&token=YOUR_API_KEY
{
"data": [
{
"position": 5,
"title": "Apple Inc. - Wikipedia",
"link": "https://en.m.wikipedia.org/wiki/Apple_Inc.",
"website": "https://en.m.wikipedia.org/wiki/Apple_Inc.",
"reviews": [
{"text": "Apple's product lineup includes...", "source": "bing"}
]
}
],
"in_seconds": 0.05
}
GET/webpage
Extracts clean article content, metadata, and images from any public URL.
| Parameter | Type | Required | Description |
url | string | Yes | Full URL of the page to extract. |
include_html | boolean | No | Include raw sanitized content_html in the response. Default false. |
GET /api/v1/webpage?url=https://www.nasa.gov/news/&token=YOUR_API_KEY
{
"request": {"url":"https://www.nasa.gov/news/","include_html":false},
"data": {
"url": "https://www.nasa.gov/news/",
"title": "NASA News",
"description": "Resources for news media, including NASA news contacts and archived news material",
"canonical_url": "https://www.nasa.gov/news/",
"content": "Receive NASA News Releases\n\nResources for News Media\n...",
"images": [
{"src": "https://www.nasa.gov/wp-content/uploads/.../image.jpg", "alt": "NASA News"}
],
"metadata": {
"domain": "www.nasa.gov",
"language": "en",
"word_count": 59,
"reading_time_minutes": 1
}
},
"in_seconds": 0.04
}
GET/search
Single entry point that dispatches to any engine above via a type parameter — useful if you want one integration for every search type.
| Parameter | Type | Description |
type | string | One of web, images, videos, news, autocomplete, shopping, scholar, maps, reviews, webpage. Defaults to web. |
keyword | string | Required for all types except webpage (accepts q as an alias). |
url | string | Required when type=webpage. |
All other parameters from the matching endpoint above are also accepted and forwarded.
GET /api/v1/search?type=images&keyword=tesla+model+y&token=YOUR_API_KEY
Response shape is identical to calling the dedicated endpoint for that type directly.