Skip to main content
POST
/
api
/
irecommend
/
users
/
reviews
/irecommend/users/reviews
curl --request POST \
  --url https://api.anysite.io/api/irecommend/users/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "count": 2,
  "timeout": 300,
  "category": 2
}
'
[
  {
    "id": 123,
    "@type": "@irecommend_review_teaser",
    "alias": "<string>",
    "title": "<string>",
    "text": "<string>",
    "rating": 123,
    "created_at": "<string>",
    "comment_count": 123,
    "photo_count": 123,
    "images": [],
    "object_name": "<string>",
    "object_alias": "<string>",
    "author": {
      "alias": "<string>",
      "@type": "@irecommend_review_teaser_author",
      "name": "<string>",
      "image": "<string>",
      "url": "<string>"
    },
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

User alias ('verbena14') or profile page URL

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

"verbena14"

count
integer
required

Number of reviews to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
category
integer | null

Restrict to a category id from the author profile

Required range: x >= 1

Response

Successful Response

id
integer
required
@type
string
default:@irecommend_review_teaser
alias
string | null
title
string | null
text
string | null
rating
integer | null
created_at
string | null
comment_count
integer | null
photo_count
integer | null
images
string[]
object_name
string | null
object_alias
string | null
author
IrecommendReviewTeaserAuthor · object
url
string | null