Skip to main content
POST
/
api
/
goonet
/
dealers
/
reviews
/goonet/dealers/reviews
curl --request POST \
  --url https://api.anysite.io/api/goonet/dealers/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dealer": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "GoonetDealerReview",
    "id": "<string>",
    "author": "<string>",
    "purchased_car": "<string>",
    "rating": 123,
    "text": "<string>",
    "store_reply": "<string>",
    "date": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
dealer
string
required

Dealer shop id, or a full Goo-net dealer URL

Minimum string length: 1
Example:

"1002180"

count
integer
required

Max number of results to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:GoonetDealerReview
id
string | null
author
string | null
purchased_car
string | null
rating
number | null
text
string | null
store_reply
string | null
date
string | null