Crawlora
ProductPlatformsUse CasesDocsPricingCompare
Sign inTry Playground Console
Crawlora

Structured public web data APIs for search, travel, real estate, marketplaces, apps, social, audio, and AI workflows with managed execution and credit-based usage.

Product

Web Scraping APIFeaturesInfrastructure FeaturesPlatformsTravel APIsReal Estate APIsPricing

Platforms

Google SearchGoogle TrendsBingBraveGoogle MapsAirbnbTripAdvisorZillowYahoo FinanceGoogle FinanceAmazon

Developers

DocsGetting StartedAuthenticationAPI ExamplesRecipesChangelogPlaygroundSDKsIntegrationsMCP

Use cases

SERP MonitoringGoogle Maps LeadsTravel & Hospitality ResearchProperty Market IntelligenceApp Review AnalysisReview & Reputation MonitoringTikTok Trend IntelligenceYouTube Creator IntelligenceAmazon Product MonitoringMusic Catalog / Playlist IntelligencePodcast & Audio IntelligenceFinance Market DataAI Agent Web Data

Legal

TermsPrivacy
Product
Web Scraping APIFeaturesInfrastructure FeaturesPlatformsTravel APIsReal Estate APIsPricing
Platforms
Google SearchGoogle TrendsBingBraveGoogle MapsAirbnbTripAdvisorZillowYahoo FinanceGoogle FinanceAmazon
Developers
DocsGetting StartedAuthenticationAPI ExamplesRecipesChangelogPlaygroundSDKsIntegrationsMCP
Use cases
SERP MonitoringGoogle Maps LeadsTravel & Hospitality ResearchProperty Market IntelligenceApp Review AnalysisReview & Reputation MonitoringTikTok Trend IntelligenceYouTube Creator IntelligenceAmazon Product MonitoringMusic Catalog / Playlist IntelligencePodcast & Audio IntelligenceFinance Market DataAI Agent Web Data
Legal
TermsPrivacy

© 2026 Built with 💖 by Tony Wang

|System:Crawlora API status
  1. Home
  2. /Playground
  3. /Bing
  4. /Search Bing news results API

Endpoint Playground

Try the Search Bing news results API

Test Crawlora's Search Bing news results API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.

Endpoint facts

Method
GET
API path
/bing/news
Platform
Bing
Auth
apiKey
Credits
3 credits/request
Required params
q
Common optional params
page, count, country, lang
Search Bing news results API documentationBing platform pageCrawlora API pricingTry Search Bing image results APITry Bing Search APITry Suggest Bing search queries APITry Search Bing video results API

Prefilled cURL

curl "https://api.crawlora.net/api/v1/bing/news?q=openai&page=1&count=10&country=us&lang=en-us" \
  -H "x-api-key: $CRAWLORA_API_KEY"

Request parameters visible to crawlers

ParameterTypeRequiredPrefilled valueDescription
qstringYesopenaiSearch query
pageintegerNo11-based page number; defaults to 1
countintegerNo10Results per page; defaults to 10, clamped to 1..50
countrystringNousTwo-letter country code; defaults to us
langstringNoen-usBing UI language; defaults to en-us

Example JSON response

{
  "code": 200,
  "data": {
    "pagination": {
      "count": 10,
      "next_page": 2,
      "page": 1,
      "previous_page": 1
    },
    "results": [
      {
        "age": "2 hours ago",
        "age_timestamp": 1713513600,
        "description": "OpenAI announced a new model release.",
        "position": 1,
        "related_count": 30,
        "source": "Reuters",
        "thumbnail": "https://example.com/openai-news.jpg",
        "title": "OpenAI announces new model",
        "url": "https://example.com/openai-news"
      }
    ]
  },
  "msg": "OK"
}

Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Set up API keyEndpoint docs

Endpoint

Choose one catalog endpoint for this request.

5 shown
GETapiKey3 credits/requestbing.newsResponseDocBing
GET /bing/news

Search Bing news results

Returns normalized Bing news search results for a query string. Locale defaults to country=us and lang=en-us. Results are fetched from public Bing news HTML/async pages and return 503 when Bing serves a challenge page or unusable HTML.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Required query parameters

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "data": {
    "pagination": {
      "count": 10,
      "next_page": 2,
      "page": 1,
      "previous_page": 1
    },
    "results": [
      {
        "age": "2 hours ago",
        "age_timestamp": 1713513600,
        "description": "OpenAI announced a new model release.",
        "position": 1,
        "related_count": 30,
        "source": "Reuters",
        "thumbnail": "https://example.com/openai-news.jpg",
        "title": "OpenAI announces new model",
        "url": "https://example.com/openai-news"
      }
    ]
  },
  "msg": "OK"
}

Endpoint details

Returns normalized Bing news search results for a query string. Locale defaults to country=us and lang=en-us. Results are fetched from public Bing news HTML/async pages and return 503 when Bing serves a challenge page or unusable HTML.

Method
GET
Path
/bing/news
Authentication
apiKey
Credit cost
3 credits/request
Platform
Bing
Parameters
6 documented fields

Request parameters

q:querypage:querycount:querycountry:querylang:queryx-api-key:header

Response schema fields

codedatadata.paginationdata.pagination.countdata.pagination.next_pagedata.pagination.pagedata.pagination.previous_pagedata.resultsdata.results[].agedata.results[].age_timestampdata.results[].descriptiondata.results[].position

Sample response summary

{
  "code": 200,
  "data": {
    "pagination": {
      "count": 10,
      "next_page": 2,
      "page": 1,
      "previous_page": 1
    },
    "results": [
      {
        "age": "2 hours ago",
        "age_timestamp": 1713513600,
        "description": "OpenAI announced a new model release.",
        "position": 1,
        "related_count": 30,
        "source": "Reuters",
        "thumbnail": "https://example.com/openai-news.jpg",
        "title": "OpenAI announces new model",
        "url": "https://example.com/openai-news"
      }
    ]
  },
  "msg": "OK"
}

cURL example

curl "https://api.crawlora.net/api/v1/bing/news?q=<q>" \
  -H "x-api-key: $CRAWLORA_API_KEY"
View endpoint docsOpen platform pageBrowse all endpointsPricingSearch Bing image resultsSearch Bing web resultsSuggest Bing search queriesSearch Bing video results

Browse public API demos

Google Trends explore dataSearch TripAdvisor placesSearch Zillow listingsYahoo Finance ticker quoteYahoo Finance searchYahoo Finance historical pricesYahoo Finance trending symbolsSearch Airbnb stays
DocsPlatformsPricing