Audio File List
Retrieve the list of audio files added and validated
URL
GET https://api.voicepartner.fr/v1/audios
Limit of 360 requests per minute. If you exceed these limits you will receive an HTTP 429 response.
Required Parameters
Name
Value
apiKey
Requests
<?php
// The API URL you want to send the request to
$url = 'http://api.voicepartner.fr/v1/audios/YOUR_API_KEY';
// Initialize cURL
$curl = curl_init($url);
// Configure cURL options
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, [
'Cache-Control: no-cache'
]);
// Execute the cURL request and store the response
$response = curl_exec($curl);
// Check whether an error occurred during the request
if ($response === false) {
// Handle the error here
$error = curl_error($curl);
curl_close($curl);
die("cURL Error: $error");
}
// Close the cURL session
curl_close($curl);
// Display the response
echo $response;Response
Last updated