Skip to main content
POST
/
api
/
bing
/
news
/
articles
/
top
/bing/news/articles/top
curl --request POST \
  --url https://api.anysite.io/api/bing/news/articles/top \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "market": "en-US"
}
'
[
  {
    "@type": "BingNewsArticle",
    "web_url": "<string>",
    "source": "<string>",
    "is_on_msn": false,
    "published": "<string>",
    "published_at": "<string>",
    "snippet": "<string>",
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of results

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
category
enum<string> | null

Restrict the feed to a news category

Available options:
World,
US,
Sports,
Technology,
Business,
Science,
Entertainment,
Politics,
Health
market
enum<string>
default:en-US

Region and language market

Available options:
en-US,
en-GB,
en-CA,
en-AU,
en-IN,
en-IE,
en-NZ,
en-PH,
en-ZA,
en-MY,
en-SG,
de-DE,
de-AT,
de-CH,
fr-FR,
fr-BE,
fr-CA,
fr-CH,
es-ES,
es-MX,
es-AR,
es-US,
es-CL,
it-IT,
nl-NL,
nl-BE,
pt-BR,
pt-PT,
pl-PL,
ru-RU,
tr-TR,
sv-SE,
da-DK,
fi-FI,
nb-NO,
ar-SA,
he-IL,
ja-JP,
ko-KR,
zh-CN,
zh-HK,
zh-TW,
th-TH,
id-ID,
vi-VN,
hi-IN

Response

Successful Response

@type
string
default:BingNewsArticle
web_url
string | null
source
string | null
is_on_msn
boolean
default:false
published
string | null
published_at
string | null
snippet
string | null
image
string | null