List audio
Get all the speech generations you have created.
Authorizations
Query parameters
pagenumberOptionalDefault:
The page number to retrieve.
0
limitnumber · max: 200OptionalDefault:
The maximum number of items per page.
50
for_publicnumberOptionalDefault:
If 1, only public audio is returned.
0
Responses
200
Successful response
application/json
400
Invalid request
application/json
get
GET /api/v1/audio HTTP/1.1
Host: shortgenius.com
Authorization: Bearer JWT
Accept: */*
{
"audio": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"created_at": "text",
"updated_at": null,
"url": null,
"user_id": "123e4567-e89b-12d3-a456-426614174000",
"transcript": {
"words": [
{
"text": "text",
"start": 1,
"end": 1,
"confidence": 1
}
]
},
"category": "AIGeneratedAudio",
"state": "pending",
"text": null,
"locale": "af-ZA",
"voice": {
"id": "text",
"name": "text",
"description": null,
"avatar_url": null,
"flag_url": null,
"tags": {
"language": null,
"accent": null,
"age": null,
"category": null,
"gender": null,
"tone": null,
"useCase": null
},
"preview_url": null,
"locale": "af-ZA",
"source": "Cartesia"
},
"duration": null,
"lufs": null
}
],
"has_more": true
}
Last updated