AUDIO
THIRD-PARTY
AUDIO
THIRD-PARTY

Control Bar

API

import requests url = "https://api.hyperbolic.xyz/v1/audio/generation" headers = { "Content-Type": "application/json", "Authorization": "Bearer <api-key>" } data = { "text": "Los Angeles! The City of Angels is a treasure trove of exciting experiences, iconic landmarks, and endless entertainment options.", "speed": "1" } response = requests.post(url, headers=headers, json=data) print(response.json())