Skip to main content
POST
/
api
/
otzovik
/
objects
/
search
/otzovik/objects/search
curl --request POST \
  --url https://api.anysite.io/api/otzovik/objects/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "@type": "@otzovik_object_search_result",
    "name": "<string>",
    "description": "<string>",
    "rating": 123,
    "review_count": 123,
    "image": "<string>",
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search keyword for review objects

Minimum string length: 1
Examples:

"iphone 15"

"ozon"

"сбербанк"

count
integer
required

Number of objects to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
@type
string
default:@otzovik_object_search_result
name
string | null
description
string | null
rating
number | null
review_count
integer | null
image
string | null
url
string | null