GET
/
v1
/
tts
/
history
curl --request GET \
  --url https://os.gan.ai/v1/tts/history \
  --header 'ganos-api-key: <api-key>'
{
  "total": 123,
  "data": [
    {
      "inference_id": "<string>",
      "tts_input_text": "<string>",
      "voice_name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "audio_file": "<string>"
    }
  ]
}

Authorizations

ganos-api-key
string
header
required

Use the API key generated from our website to programmatically interact with our endpoints. This key authorizes your requests, allowing you to access and utilize our services securely.

Query Parameters

skip
integer
default:0

To navigate through a large collection of history, use this query parameter to fetch items that come after a specified number of skipped entries. This helps you efficiently retrieve the next set of history items.

limit
integer
default:10

The maximum number of TTS history items to return.

Response

200
application/json
Successful Response
total
integer
required

Total text-to-speech history items.

data
object[] | null