For the complete documentation index, see llms.txt. This page is also available as Markdown.

Audio File List

Retrieve the list of audio files added and validated

URL

GET https://api.voicepartner.fr/v1/audios

Required Parameters

Name
Value

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