Discover/Sadriaticaauto API
live

Sadriaticaauto APIsadriaticaauto.it

Access the full vehicle inventory from S.Adriatica Auto dealership in Italy. Get specs, pricing, images, and descriptions via 2 REST endpoints.

This API takes change requests — .
Endpoint health
verified 7h ago
list_vehicles
get_vehicle
2/2 passing latest checkself-healing
Endpoints
2
Updated
8h ago

What is the Sadriaticaauto API?

The S.Adriatica Auto API exposes the complete vehicle inventory of an Italian dealership through 2 endpoints, returning over 15 structured fields per vehicle. Use list_vehicles to retrieve all current listings in a single call, or call get_vehicle with a numeric ID to fetch full details on a single car including horsepower, kilowatts, fuel type, transmission, color, doors, seats, gears, and price in euros.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/54dda0a4-0aca-4ef9-a44c-f9732a617ba9/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/54dda0a4-0aca-4ef9-a44c-f9732a617ba9/list_vehicles' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Returns the complete inventory of vehicles currently available at the dealership. Each vehicle includes full specifications (brand, model, version, fuel type, transmission, mileage, power, emission class, body type, drivetrain, etc.), pricing, description, and image URLs. The response contains all vehicles in a single call with no pagination — the dealership inventory is small enough to return in one request.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of vehicles returned",
    "vehicles": "array of vehicle objects with full details"
  },
  "sample": {
    "data": {
      "total": 36,
      "vehicles": [
        {
          "hp": 102,
          "id": 55,
          "kw": 75,
          "brand": "Bmw",
          "color": "Oro",
          "doors": "4/5",
          "gears": 5,
          "model": "318",
          "price": 19500,
          "seats": "4/5",
          "images": [
            "https://www.sadriaticaauto.it/backend/public/storage/veicoli/1758789051_68d4fdbbc9183_IMG-20250829-WA0007.jpg"
          ],
          "version": "316i",
          "body_type": "Roadster",
          "condition": "usato",
          "equipment": null,
          "fuel_type": "Benzina",
          "drivetrain": "posteriore",
          "mileage_km": 57000,
          "company_car": false,
          "consumption": "18.00",
          "description": "Auto come nuova",
          "displacement": "1800",
          "paint_finish": "metallizzata",
          "transmission": "Manuale",
          "license_plate": "Te284066",
          "emission_class": "Euro 1",
          "discounted_price": 19500,
          "registration_date": "06/1991",
          "new_driver_eligible": false
        }
      ]
    },
    "status": "success"
  }
}

About the Sadriaticaauto API

Endpoints and Coverage

The API has two endpoints. list_vehicles returns the entire current dealership inventory as an array of vehicle objects alongside a total count. Each object carries the full specification set: brand, model, version, fuel type, transmission, mileage, power (both hp and kw), emission class, body type, drivetrain, color, doors, seats, gears, price in euros, a text description, and image URLs. No pagination parameter is needed — the full inventory is returned in one response.

Single-Vehicle Lookup

get_vehicle accepts a vehicle_id string (e.g. '55' or '63') obtained from the id field in list_vehicles results. It returns the same comprehensive field set for that specific vehicle, including up to 20 image URLs. If the supplied ID does not correspond to an active listing, the endpoint returns a stale_input signal rather than an empty object, making it straightforward to detect removed or invalid listings.

Data Shape Notes

Power is returned in two fields simultaneously — hp (horsepower, integer) and kw (kilowatts, integer) — so callers can use whichever unit fits their application without conversion logic. doors and seats are returned as strings, while gears and price are integers. The brand and model fields follow standard Italian automotive naming conventions and reflect the inventory as listed by the dealership.

Reliability & maintenanceVerified

The Sadriaticaauto API is a managed, monitored endpoint for sadriaticaauto.it — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when sadriaticaauto.it changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official sadriaticaauto.it API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a vehicle comparison tool using hp, kw, fuel type, and price fields from list_vehicles
  • Display a dealership inventory page with images, descriptions, and pricing sourced from list_vehicles
  • Monitor price changes over time by polling get_vehicle for specific vehicle IDs
  • Filter available stock by emission class or body type for compliance or customer preference workflows
  • Generate structured vehicle data sheets using spec fields like gears, doors, seats, and drivetrain
  • Detect when a listing goes stale by checking for the stale_input response from get_vehicle
  • Power a lead-generation form that pre-fills vehicle details from a selected listing ID
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does S.Adriatica Auto have an official developer API?+
S.Adriatica Auto does not publish an official developer API. This Parse API provides structured access to their current vehicle inventory data.
What does `list_vehicles` return and can I filter the results?+
list_vehicles returns all current inventory in one call — a total count and an array of vehicle objects each containing specs, pricing, description, and image URLs. The endpoint takes no input parameters, so filtering by brand, fuel type, price range, or other fields must be applied client-side on the returned array.
How does `get_vehicle` behave when a vehicle ID no longer exists?+
When a vehicle_id does not match any active listing, the endpoint returns a stale_input signal. This lets callers distinguish between a missing vehicle and an API error, which is useful when working with IDs cached from earlier list_vehicles responses.
Does the API cover historical sold inventory or reserved vehicles?+
Not currently. Both endpoints reflect only vehicles listed as currently available at the dealership. Historical sold listings and reserved-status vehicles are not included in the response data. You can fork this API on Parse and revise it to add an endpoint targeting those listing states if the source exposes them.
Are multiple dealership locations or branches covered?+
The API covers the single S.Adriatica Auto dealership. Multi-location inventory aggregation is not part of the current endpoint set. You can fork the API on Parse and revise it to target additional locations if needed.
Page content last updated . Spec covers 2 endpoints from sadriaticaauto.it.
Related APIs in AutomotiveSee all →
autoscout24.it API
Search for used and new cars across AutoScout24 Italy's inventory, view detailed listing information, and browse dealer profiles. Filter vehicles by make and model to find exactly what you're looking for in the Italian automotive market.
eng.auto24.lv API
Search and browse thousands of vehicles from Latvia's largest auto marketplace, filtering by make, type, year, price, fuel type, and transmission to find exactly what you're looking for. Access comprehensive vehicle details including specifications, equipment lists, images, and pricing information for any listing.
cars.com API
Search for vehicles on Cars.com using filters like price, make, and model, then get detailed specifications and dealer inventory information for any listing you're interested in. Access comprehensive vehicle details including pricing, features, and dealer contact information all in one place.
coches.net API
coches.net API
autotrader.com API
Search Autotrader.com vehicle listings and access detailed information like pricing, specifications, and VIN data with flexible filtering options. Browse all available vehicle makes and models to refine your search across thousands of listings.
avto.net API
Search and browse car listings from Slovenia's top automotive marketplace, then access detailed vehicle information including pricing, specifications, and seller details. Get comprehensive data on available cars to compare options and make informed purchasing decisions.
preowned.ferrari.com API
Search and browse preowned Ferrari vehicles worldwide with detailed specifications, pricing, and dealer information all in one place. Find the exact model you're looking for by filtering across countries, dealers, and inventory to discover available luxury vehicles.
autotrader.co.za API
Search and access comprehensive vehicle listings from South Africa's AutoTrader with pricing, specifications, location details, and seller information. Get everything you need to compare cars and make informed purchasing decisions, though direct seller phone numbers aren't available due to security protections.