Skip to main content
POST
/
api
/
kommersant
/
articles
/
search
/kommersant/articles/search
curl --request POST \
  --url https://api.anysite.io/api/kommersant/articles/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 500,
  "timeout": 300,
  "sort": "date",
  "date_from": "2025-01-01",
  "date_to": "2025-12-31"
}
'
[
  {
    "id": 123,
    "title": "<string>",
    "@type": "@kommersant_search_result",
    "subtitle": "<string>",
    "excerpt": "<string>",
    "published_at": "<string>",
    "image": "<string>",
    "web_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Full-text search query

Minimum string length: 1
Example:

"нефть"

count
integer
required

Max number of results to return

Required range: 1 <= x <= 1000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:date

Result ordering

Available options:
date,
relevance
content_type
enum<string> | null

Restrict results to a content type (photo galleries, special projects or video)

Available options:
photo,
special,
video
source
enum<string> | null

Restrict results to a Kommersant publication or material source

Available options:
newspaper,
supplements,
news_feeds,
site,
vlast,
ogoniok,
weekend,
autopilot,
dengi,
nauka,
kommersant_fm,
citizen_k,
secret_firmy,
review
region
enum<string> | null

Restrict results to a regional edition

Available options:
saint_petersburg,
vladivostok,
volgograd,
voronezh,
yekaterinburg,
izhevsk,
irkutsk,
kazan,
krasnodar,
krasnoyarsk,
nizhny_novgorod,
nizhny_novgorod_fm,
novorossiysk,
novosibirsk,
omsk,
perm,
rostov_on_don,
samara,
saratov,
sochi,
stavropol,
ufa,
khabarovsk,
cheboksary,
chelyabinsk,
yaroslavl,
ukraine
date_from
string | null

Earliest publish date, YYYY-MM-DD

Example:

"2025-01-01"

date_to
string | null

Latest publish date, YYYY-MM-DD

Example:

"2025-12-31"

Response

Successful Response

id
integer
required
title
string
required
@type
string
default:@kommersant_search_result
subtitle
string | null
excerpt
string | null
published_at
string | null
image
string | null
web_url
string | null