Skip to main content
POST
/
api
/
otzovik
/
objects
/otzovik/objects
curl --request POST \
  --url https://api.anysite.io/api/otzovik/objects \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "object": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "@type": "@otzovik_object",
    "name": "<string>",
    "brand": "<string>",
    "image": "<string>",
    "rating": 123,
    "review_count": 123,
    "recommend_ratio": 123,
    "category": "<string>",
    "breadcrumbs": [],
    "similar": [],
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
object
string
required

Object alias ('smartphone_apple_iphone_15') or full review page URL

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|//[^\s]+|/?(?:reviews/)?[A-Za-z0-9][A-Za-z0-9_\-/]*)$
Examples:

"smartphone_apple_iphone_15"

"https://otzovik.com/reviews/smartphone_apple_iphone_15/"

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
name
string | null
brand
string | null
image
string | null
rating
number | null
review_count
integer | null
recommend_ratio
integer | null
category
string | null
breadcrumbs
OtzovikBreadcrumb · object[]
similar
OtzovikObjectRef · object[]
url
string | null