Skip to main content
POST
/
api
/
otzovik
/
reviews
/otzovik/reviews
curl --request POST \
  --url https://api.anysite.io/api/otzovik/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "review": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@otzovik_review",
    "title": "<string>",
    "text": "<string>",
    "rating": 123,
    "pros": "<string>",
    "cons": "<string>",
    "published_at": "<string>",
    "is_recommended": true,
    "helpful_count": 123,
    "comment_count": 123,
    "images": [],
    "props": [],
    "author": {
      "alias": "<string>",
      "@type": "@otzovik_review_author",
      "karma": 123,
      "location": "<string>",
      "review_count": 123,
      "image": "<string>",
      "url": "<string>"
    },
    "object": {
      "alias": "<string>",
      "@type": "@otzovik_review_object_ref",
      "name": "<string>",
      "url": "<string>"
    },
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
review
string
required

Review id ('15810837') or full review page URL

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|//[^\s]+|/?review_\d+\.html|\d+)$
Examples:

"15810837"

"https://otzovik.com/review_15810837.html"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:@otzovik_review
title
string | null
text
string | null
rating
integer | null
pros
string | null
cons
string | null
published_at
string | null
helpful_count
integer | null
comment_count
integer | null
images
string[]
props
OtzovikReviewProp · object[]
author
OtzovikReviewAuthor · object
object
OtzovikReviewObjectRef · object
url
string | null