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

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
maker
string
required

Maker slug, uppercase (e.g. 'TOYOTA')

Minimum string length: 1
Example:

"TOYOTA"

model
string
required

Model slug, uppercase (e.g. 'PRIUS')

Minimum string length: 1
Example:

"PRIUS"

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:GoonetReview
id
string | null
url
string | null
rating
number | null
text
string | null
car
string | null
author
string | null
author_region
string | null
date
string | null