v1.0.0
Multiple response types
Example of an OpenAPI document with multiple response types.
Contact
Terms of Service
https://openai.com/termsServers
https://cdn.openai.com/API
ID: getAudio
Get audio
GET
/docs/audio/alloy.wav
Example of a response with an audio file.
Responses
Successful responseSchema JSON JSON
audio/wav
"string"
GET
/docs/audio/alloy.wav
Samples
curl https://cdn.openai.com/API/docs/audio/alloy.wav \
--header 'Content-Type: application/json'
fetch('https://cdn.openai.com/API/docs/audio/alloy.wav', {
headers: {
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://cdn.openai.com/API/docs/audio/alloy.wav",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://cdn.openai.com/API/docs/audio/alloy.wav"
headers = {"Content-Type": "application/json"}
response = requests.get(url, headers=headers)
print(response.json())
ID: getImage
Get image
GET
/images/guides/simple-cat-image-dall-e-3.webp
Example of a response with an image file.
Responses
Successful responseSchema JSON JSON
image/webp
"string"
GET
/images/guides/simple-cat-image-dall-e-3.webp
Samples
curl https://cdn.openai.com/API/images/guides/simple-cat-image-dall-e-3.webp \
--header 'Content-Type: application/json'
fetch('https://cdn.openai.com/API/images/guides/simple-cat-image-dall-e-3.webp', {
headers: {
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://cdn.openai.com/API/images/guides/simple-cat-image-dall-e-3.webp",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://cdn.openai.com/API/images/guides/simple-cat-image-dall-e-3.webp"
headers = {"Content-Type": "application/json"}
response = requests.get(url, headers=headers)
print(response.json())