Current and historic list price data for cars and light commercials.
Solifi data has been trusted by the UK leasing industry for over 20 years to power vehicle quotation and ordering systems, where the need for highly accurate pricing data is paramount.
Key Features
IDS Code Lookup
Easy data retrieval from an IDS Code
Comprehensive
Accurate pricing data for over 200,000 car and light commercial vehicle variants
OE Sourced
Solifi data is sourced directly from the manufacturer, ensuring highly accurate pricing
Model Year Compliant
Pricing data is indexed by model year, removing ambiguity and increasing accuracy
Effective Dates
Includes from/to effective dates ensuring you can identify the correct price for a given date of registration e.g. for P11D reporting
Delivery & VAT
Includes delivery charges, and VAT at the effective date
Sample Response
V2
Documentation
Introduction
Current and historic list price data for cars and light commercials
Header
When making calls to our API, include the following header:
x-api-key:your-api-key-here
Example Request
https://api.oneautoapi.com/solifi/listpricefromidscode?ids_code=AB001234&effective_date=2024-05-01
Example Sandbox Request
https://sandbox.oneautoapi.com/solifi/listpricefromidscode?ids_code=AB001234&effective_date=2024-05-01
Request Parameters
ids_code
mandatory, string, e.g. AB001234
The IDS Code.
effective_date
optional, string, e.g. 2024-05-01
Returns the pricing relevant to the chosen vehicle for that moment in time.
Sample Response
{
"success": true,
"result": {
"prices_data": [
{
"effective_from_date": "2020-01-01",
"effective_to_date": "2022-01-01",
"list_price_ex_vat": 33616.67,
"list_price_vat": 6723.33,
"delivery_price_ex_vat": 708.33,
"delivery_price_vat": 141.67,
"list_price_inc_delivery_vat": 41190
}
]
},
"error": "If there is an error the message would go here"
}Response Parameters
success
e.g. true
Whether the api call was successful
effective_from_date
e.g. 2020-01-01
The date the price is effective from
effective_to_date
e.g. 2022-01-01
The date the price is effective to
list_price_ex_vat
e.g. 33616.67
The list price excluding VAT
list_price_vat
e.g. 6723.33
The list price VAT
delivery_price_ex_vat
e.g. 708.33
Delivery price excluding VAT
delivery_price_vat
e.g. 141.67
The delivery price VAT
list_price_inc_delivery_vat
e.g. 41190
The list price + delivery price including VAT
error
e.g. If there is an error the message would go here
Details of what went wrong with the api call
Status Codes
200
success, chargeable
Request has been successfully received and a response has been sent.
202
accepted, non-chargeable
Request has been received and accepted for processing, but the action has not yet been completed.
204
no content, non-chargeable
Request has been successfully received but there is no content to return e.g. if an invalid VRM has been sent.
206
partial content, non-chargeable
Request has been successfully received but limited content is returned e.g. if an invalid VRM has been sent.
400
bad request, non-chargeable
Request was not received e.g. if any required parameters are missing.
403
forbidden, non-chargeable
Request was rejected e.g. if the API key is invalid or the service is not enabled.
429
too many requests, non-chargeable
API key rate limit/quota has been exceeded.
500
internal server error, non-chargeable
We are unable to process the request e.g. if the API is under extremely heavy load.
503
service unavailable, non-chargeable
Service is temporarily unavailable. Contact help@oneautoapi.com
