Get Pronunciations
curl --request GET \
--url https://api.studio.us.phrase.com/v1/pronunciations \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.studio.us.phrase.com/v1/pronunciations"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.studio.us.phrase.com/v1/pronunciations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.studio.us.phrase.com/v1/pronunciations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.studio.us.phrase.com/v1/pronunciations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.studio.us.phrase.com/v1/pronunciations")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.studio.us.phrase.com/v1/pronunciations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "f983b484-e1b6-439d-8aca-fd9c29181773",
"accountId": "e7631985-e50d-424e-beef-6cb536d32c11",
"name": "english greeting",
"description": "test",
"active": true,
"createdAt": "2025-10-13T10:53:12.400Z",
"updatedAt": "2025-10-13T10:53:12.400Z",
"items": [
{
"id": "03e75ff0-50f2-493c-a46b-b0f4101e5850",
"pronunciationId": "f983b484-e1b6-439d-8aca-fd9c29181773",
"source": "hello",
"target": "onion",
"createdAt": "2025-10-13T10:53:26.934Z",
"updatedAt": "2025-10-13T10:53:26.934Z"
}
]
}
],
"pagination": {
"page": 1,
"pageSize": 1,
"total": 1,
"totalPages": 1
}
}{
"success": false,
"statusCode": 400,
"message": "Bad Request",
"timestamp": "2025-01-01T00:00:00.000Z"
}{
"success": false,
"statusCode": 400,
"message": "Bad Request",
"timestamp": "2025-01-01T00:00:00.000Z"
}{
"success": false,
"statusCode": 400,
"message": "Bad Request",
"timestamp": "2025-01-01T00:00:00.000Z"
}Pronunciations
Get Pronunciations
Retrieve available pronunciations for the authenticated account
GET
/
v1
/
pronunciations
Get Pronunciations
curl --request GET \
--url https://api.studio.us.phrase.com/v1/pronunciations \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.studio.us.phrase.com/v1/pronunciations"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.studio.us.phrase.com/v1/pronunciations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.studio.us.phrase.com/v1/pronunciations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.studio.us.phrase.com/v1/pronunciations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.studio.us.phrase.com/v1/pronunciations")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.studio.us.phrase.com/v1/pronunciations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "f983b484-e1b6-439d-8aca-fd9c29181773",
"accountId": "e7631985-e50d-424e-beef-6cb536d32c11",
"name": "english greeting",
"description": "test",
"active": true,
"createdAt": "2025-10-13T10:53:12.400Z",
"updatedAt": "2025-10-13T10:53:12.400Z",
"items": [
{
"id": "03e75ff0-50f2-493c-a46b-b0f4101e5850",
"pronunciationId": "f983b484-e1b6-439d-8aca-fd9c29181773",
"source": "hello",
"target": "onion",
"createdAt": "2025-10-13T10:53:26.934Z",
"updatedAt": "2025-10-13T10:53:26.934Z"
}
]
}
],
"pagination": {
"page": 1,
"pageSize": 1,
"total": 1,
"totalPages": 1
}
}{
"success": false,
"statusCode": 400,
"message": "Bad Request",
"timestamp": "2025-01-01T00:00:00.000Z"
}{
"success": false,
"statusCode": 400,
"message": "Bad Request",
"timestamp": "2025-01-01T00:00:00.000Z"
}{
"success": false,
"statusCode": 400,
"message": "Bad Request",
"timestamp": "2025-01-01T00:00:00.000Z"
}Was this page helpful?
⌘I