# List available voicesvoices = requests.get( "https://api.acedata.cloud/fish/voices", headers={"Authorization": f"Bearer {API_KEY}"},).json()# Use a specific voiceresponse = requests.post( "https://api.acedata.cloud/fish/audios", headers={"Authorization": f"Bearer {API_KEY}"}, json={ "text": "Your custom text here.", "reference_id": voices["data"][0]["id"], },)