Skip to main content
POST
/
api
/
autoru
/
dealers
/
offers
/autoru/dealers/offers
curl --request POST \
  --url https://api.anysite.io/api/autoru/dealers/offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dealer": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@autoru_offer",
    "hash": "<string>",
    "sale_id": "<string>",
    "url": "<string>",
    "title": "<string>",
    "description": "<string>",
    "category": "<string>",
    "section": "<string>",
    "status": "<string>",
    "availability": "<string>",
    "color_hex": "<string>",
    "price": 123,
    "currency": "<string>",
    "has_nds": true,
    "predicted_price": {
      "@type": "@autoru_price_range",
      "price_from": 123,
      "price_to": 123,
      "currency": "<string>"
    },
    "price_history": [],
    "owner_expenses": {
      "@type": "@autoru_owner_expenses",
      "transport_tax": 123,
      "transport_tax_year": 123,
      "osago_insurance": []
    },
    "discount_options": {
      "@type": "@autoru_discount_options",
      "tradein": 123,
      "insurance": 123,
      "credit": 123,
      "max_discount": 123
    },
    "mileage": 123,
    "condition": "<string>",
    "images": [],
    "image_count": 123,
    "vehicle": {
      "@type": "@autoru_vehicle",
      "mark": "<string>",
      "mark_ru": "<string>",
      "model": "<string>",
      "model_ru": "<string>",
      "generation": "<string>",
      "generation_id": "<string>",
      "year_from": 123,
      "year_to": 123,
      "price_segment": "<string>",
      "body_type": "<string>",
      "door_count": 123,
      "seats": [],
      "auto_class": "<string>",
      "engine_type": "<string>",
      "transmission": "<string>",
      "drive": "<string>",
      "engine_volume": 123,
      "power_hp": 123,
      "power_kw": 123,
      "acceleration": 123,
      "fuel_rate": 123,
      "modification": "<string>",
      "complectation": "<string>",
      "steering_wheel": "<string>",
      "vendor": "<string>",
      "equipment": [],
      "equipment_groups": []
    },
    "documents": {
      "@type": "@autoru_documents",
      "year": 123,
      "owner_count": 123,
      "pts": "<string>",
      "is_pts_original": true,
      "is_custom_cleared": true,
      "vin": "<string>",
      "vin_resolution": "<string>",
      "pts_resolution": "<string>",
      "owners_resolution": "<string>",
      "legal_resolution": "<string>",
      "accidents_resolution": "<string>"
    },
    "seller": {
      "@type": "@autoru_seller",
      "name": "<string>",
      "seller_type": "<string>",
      "geo": {
        "@type": "@autoru_geo",
        "address": "<string>",
        "region": "<string>",
        "latitude": 123,
        "longitude": 123
      },
      "rating": 123,
      "review_count": 123,
      "registration_date": "<string>"
    },
    "salon": {
      "@type": "@autoru_salon",
      "id": "<string>",
      "name": "<string>",
      "alias": "<string>",
      "is_official": true,
      "rating": 123,
      "image": "<string>",
      "phones": [],
      "geo": {
        "@type": "@autoru_geo",
        "address": "<string>",
        "region": "<string>",
        "latitude": 123,
        "longitude": 123
      },
      "offer_count": 123
    },
    "view_count": 123,
    "rating": 123,
    "review_count": 123,
    "days_in_stock": 123,
    "created_at": 123,
    "updated_at": 123,
    "tags": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
dealer
string
required

Dealer code/alias (e.g. 'avtogermes_geely_mkad_44_km') or the full dealer profile URL

Minimum string length: 1
Example:

"avtogermes_geely_mkad_44_km"

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

id
string
required
@type
string
default:@autoru_offer
hash
string | null
sale_id
string | null
url
string | null
title
string | null
description
string | null
category
string | null
section
string | null
status
string | null
availability
string | null
color_hex
string | null
price
integer | null
currency
string | null
has_nds
boolean | null
predicted_price
AutoruPriceRange · object
price_history
AutoruPricePoint · object[]
owner_expenses
AutoruOwnerExpenses · object
discount_options
AutoruDiscountOptions · object
mileage
integer | null
condition
string | null
images
string[]
image_count
integer | null
vehicle
AutoruVehicle · object
documents
AutoruDocuments · object
seller
AutoruSeller · object
salon
AutoruSalon · object
view_count
integer | null
rating
number | null
review_count
integer | null
days_in_stock
integer | null
created_at
integer | null
updated_at
integer | null
tags
string[]