Easy to integrate
If you have the minimum knowledje of web programming you can install it in few minutes on your website, if not (we can manage to install it on your website)
Mod-Files is offering a full catalog ready to be inserted on your website.
Our database is contaning the power, torque difference between stock and modified gain for every car brand, model, engine, horsepower, when you will put this api in your website you can get same or customed car configuration on your website.
Available brands
Available models
Available Motors
If you have the minimum knowledje of web programming you can install it in few minutes on your website, if not (we can manage to install it on your website)
You can edit the formula in design like your website, no link reffer to our website.
You can use car logo or texte like in our website.
We are updating cars everytime, and your website will get this update once this API is installed on your website without any touch.
Our API allows you to access:
Add our catalog to your website with the programming language you already use.
$url = 'https://mod-files.com/api/chip/v1/types/cars/marks?' . http_build_query([
'api_key' => 'API_KEY',
'api_secret' => 'API_SECRET'
]);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // UPDATE
$response = curl_exec($ch);
error_log($response);
import urllib
params = {
'api_key': 'API_KEY',
'api_secret': 'API_SECRET'
}
url = 'https://mod-files.com/api/chip/v1/types/cars/marks?' + urllib.urlencode(params)
response = urllib.urlopen(url)
print response.read()
require "net/http"
require "uri"
uri = URI.parse("https://mod-files.com/api/chip/v1/types/cars/marks")
params = {
'api_key' => 'API_KEY',
'api_secret' => 'API_SECRET'
}
response = Net::HTTP.post_form(uri, params)
puts response.body
var https = require('https');
var data = JSON.stringify({
api_key: 'API_KEY',
api_secret: 'API_SECRET'
});
var options = {
host: 'www.mod-files.com',
path: '/api/chip/v1/types/cars/marks',
port: 443,
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Content-Length': Buffer.byteLength(data)
}
};
var req = https.request(options);
req.write(data);
req.end();
var responseData = '';
req.on('response', function(res){
res.on('data', function(chunk){
responseData += chunk;
});
res.on('end', function(){
console.log(JSON.parse(responseData));
});
});