| URL | GEThttps://api.inventario.pro/public/v2/coche?apiKey={{apiKey}}&precios=1 |
|---|---|
| Category | Cars |
This endpoint returns the minimum and maximum price based on the provided API key.
apiKey (string, required): The API key for authentication
precios = 1 (integer, required): Requests the range of prices
The response provides an array of objects, each containing "precio_minimo" and "precio_maximo" fields, representing the minimum and maximum prices of all cars in the inventory.
In addition to the required parameters, the request allows filtering results using specific query parameters. These parameters use prefixes to define different database operations:
To add filter by brand (marca_id = 5), price range (between 10,000 and 20,000), and available for sale (estado_id = 1):
https://api.inventario.pro/public/v2/coche?{{request_parameters}}&FILTR_marca_id=5&BTW_precio[]=10000&BTW_precio[]=20000&FILTR_estado_id=1
| APP-KEY | {{appkey}} |
|---|
200OK
[
{
"precio_minimo": "234.000",
"precio_maximo": "234242336.000"
}
]