Together for a better user experience
We believe in a tailored solution that fits any business requirement. Our API management platform allows our partners to configure the parameters of the data shared through the API, outlining what can be sent, received, synchronised, blocked or updated.
Our APIs

Authentication
This API endpoint creates a Bearer Token that is used to create a secure token for authenticating API requests. The client must provide valid secret key to this endpoint, and upon successful validation, the server issues a Bearer token.

Export Data
This API exports car sales data within a specified date range in CSV or Excel format. Users provide the date range and file type, and the API directly returns the file. It ensures secure access with authentication and error handling. _ _ _ _ _ _ _ _

Import Data
This API imports car sales deals, pre-reports, and trade-ins through the request body, validates the data, and securely stores it in the system, providing feedback on success or any errors encountered. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
To call the /auth/token/{secret key} API with the POST method, replace {secret key} with your actual secret key in the URL. No request body is required. Set the Content-Type header to application/json. Send the request with the POST method, ensuring that no data is sent in the body. Upon success, the response will contain a Bearer token. This token can then be used for authentication in subsequent API requests.
POST /auth/token/{secret_key}
{
"token_type": "Bearer",
"expires_in": 3599,
"ext_expires_in": 3599,
"access_token": "HEADER.PAYLOAD.VERIFY_SIGNATURE"
}
