Quick Start
We understand that getting started with a new API can sometimes be intimidating. That's why we created this Quick Start guide to help you get up and running with the InstantUploader API in just a few simple steps.
Make Your First Request
To make your first request, send a simple GET request to the endpoint. This will return the status of our current API. It doesn't require any authentication and simply demonstrates that it's working.
GET https://api.instantuploader.com
Thank you for using our API. Please follow the documentation at https://guides.instantuploader.com/api/ and feel free to reach out if you have any questions.Examples:
POST / HTTP/1.1
Host: api.instantuploader.comconst axios = require('axios');
const url = `https://api.instantuploader.com`;
axios.get(url).then(response => {
console.log(response.data);
}).catch(error => {
console.log(error);
});
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.instantuploader.com",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET"
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;hpLast updated