Skip to main content
POST
/
api
/
carsensor
/
listings
/carsensor/listings
curl --request POST \
  --url https://api.anysite.io/api/carsensor/listings \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "listing": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "CarsensorListing",
    "maker": "<string>",
    "model": "<string>",
    "maker_slug": "<string>",
    "model_slug": "<string>",
    "model_code": "<string>",
    "body_price": 123,
    "total_price": 123,
    "currency": "JPY",
    "year": 123,
    "year_era": "<string>",
    "mileage": 123,
    "repair_history": "<string>",
    "inspection": "<string>",
    "maintenance": "<string>",
    "body_type": "<string>",
    "drive": "<string>",
    "color": "<string>",
    "steering": "<string>",
    "transmission": "<string>",
    "fuel": "<string>",
    "seats": 123,
    "doors": 123,
    "displacement": 123,
    "recycle_fee": "<string>",
    "warranty": "<string>",
    "quality_rating": 123,
    "has_quality_report": true,
    "is_imported": true,
    "is_one_owner": true,
    "is_non_smoking": true,
    "is_unused": true,
    "has_maintenance_record": true,
    "monthly_loan": 123,
    "equipment": [],
    "prefecture": "<string>",
    "city": "<string>",
    "dealer_id": "<string>",
    "dealer_pref": "<string>",
    "dealer_name": "<string>",
    "image": "<string>",
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
listing
string
required

Listing id (e.g. 'AU7085680096') or full listing URL

Minimum string length: 1
Example:

"AU7085680096"

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:CarsensorListing
maker
string | null
model
string | null
maker_slug
string | null
model_slug
string | null
model_code
string | null
body_price
number | null
total_price
number | null
currency
string
default:JPY
year
integer | null
year_era
string | null
mileage
integer | null
repair_history
string | null
inspection
string | null
maintenance
string | null
body_type
string | null
drive
string | null
color
string | null
steering
string | null
transmission
string | null
fuel
string | null
seats
integer | null
doors
integer | null
displacement
integer | null
recycle_fee
string | null
warranty
string | null
quality_rating
integer | null
has_quality_report
boolean | null
is_imported
boolean | null
is_one_owner
boolean | null
is_non_smoking
boolean | null
is_unused
boolean | null
has_maintenance_record
boolean | null
monthly_loan
integer | null
equipment
string[]
prefecture
string | null
city
string | null
dealer_id
string | null
dealer_pref
string | null
dealer_name
string | null
image
string | null
images
string[]