Skip to main content
POST
/
api
/
carsensor
/
dealers
/carsensor/dealers
curl --request POST \
  --url https://api.anysite.io/api/carsensor/dealers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dealer": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "CarsensorDealer",
    "name": "<string>",
    "corporate_name": "<string>",
    "address": "<string>",
    "hours": "<string>",
    "holidays": "<string>",
    "phone": "<string>",
    "homepage_url": "<string>",
    "prefecture": "<string>",
    "rating": 123,
    "review_count": 123,
    "rating_service": 123,
    "rating_atmosphere": 123,
    "rating_aftercare": 123,
    "rating_quality": 123,
    "listing_count": 123,
    "is_certified": true,
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
dealer
string
required

Dealer reference as 'prefecture/shop_id' (e.g. 'saitama/318959001') or full shop URL

Minimum string length: 1
Example:

"saitama/318959001"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:CarsensorDealer
name
string | null
corporate_name
string | null
address
string | null
hours
string | null
holidays
string | null
phone
string | null
homepage_url
string | null
prefecture
string | null
rating
number | null
review_count
integer | null
rating_service
number | null
rating_atmosphere
number | null
rating_aftercare
number | null
rating_quality
number | null
listing_count
integer | null
is_certified
boolean | null
image
string | null