curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api-v2.acrcloud.com/api/buckets/966',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Accept: application/json',
'Authorization: Bearer your_access_token'
$response = curl_exec($curl);
var axios = require('axios');
url: 'https://api-v2.acrcloud.com/api/buckets/966',
'Accept': 'application/json',
'Authorization': 'Bearer your_access_token'
.then(function (response) {
console.log(JSON.stringify(response.data));
.catch(function (error) {