Brands
Models
Years
Engines
Stages
You can easily integrate this data into your site. Try the test API key (testSA65D46ASD4AS8F4AS6F4A68) to get started.
Sample API View
API Access Key
Multi Languages Support
API Response
Following a successful API request, the API will return unique response objects containing result data. An API response can be returned in JSON format. Find below an example API response for a Brand.
Example API Response: BRANDS
[
{
"id": 1,
"var_title": "Alfa Romeo",
"var_logo": "files/car_logo/alfa-romeo.png",
"var_logo_big": "files/car_logo_big/alfa-romeo.png",
"var_image": "files/car_image/alfa-romeo-logo-vektor-banner-image-resim-picture.jpg",
"var_fb_id": "457400231018557",
"int_status": 1,
"var_url": "chip-tuning/alfa-romeo",
"is_car": 1,
"is_truck": 0
},
{
"id": 2,
"var_title": "Alpina",
"var_logo": "files/car_logo/alpina.png",
"var_logo_big": "files/car_logo_big/alpina.png",
"var_image": "files/car_image/alpina-logo-vektor-banner-image-resim-picture.jpg",
"var_fb_id": null,
"int_status": 1,
"var_url": "chip-tuning/alpina",
"is_car": 1,
"is_truck": 0
},
]
API Response Example
Or you can use it
Easy to Use
It is very easy to install and use. If you need any help, you can get support from our team for installation.
Our team prepares integration codes appropriate for your site's theme with "React.js.js". These carefully crafted codes are seo compatible. "React.js.js" works on many platforms. (Asp, php, mobile, etc.)
All Brands Logo Free
You can access all brands logos with an URL or archived when you purchase API access
.....Code Example
PHP
//API access key
$access_key = "testSA65D46ASD4AS8F4AS6F4A68";
// Initialize CURL:
$ch = curl_init('https://api.carecusoft.com/en/v1/chiptuning?key=' . $access_key);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Store the data:
$json = curl_exec($ch);
curl_close($ch);
// Decode JSON response:
$api_result = json_decode($json, true);
// Output the "calling_code" object inside "location"
return $api_result;
JavaScript (jQuery.ajax)
var access_key = 'testSA65D46ASD4AS8F4AS6F4A68';
// get the API result via jQuery.ajax
$.ajax({
url: 'https://api.carecusoft.com/en/v1/chiptuning?key=' + access_key,
type: 'GET',
success: function (json) {
console.log(json);
}
});