Get user transcription request history
This endpoint requires an API token. You can learn more about how to get an API token from the authentication page.
1const options = {
2 method: "GET",
3 headers: {
4 "Content-Type": "application/json",
5 "Authorization": "YOUR_API_TOKEN"
6 }
7};
8
9fetch("https://api.podengine.ai/api/v1/users/usage/transcription-requests?limit=10&skip=0&status=not_started", options)
10 .then(response => response.json())
11 .then(data => console.log(data))
12 .catch(error => console.error('Error:', error));
Property | Type | Description |
---|---|---|
limitoptional | number | |
skipoptional | number | |
statusoptional | enum |
Property | Type | Description |
---|---|---|
status | string | |
data | object | |
└totalTranscriptionRequests | number | |
└transcriptionRequests | array of object | |
└episodeId | string | |
└episodeTitle | string | |
└podcastTitle | string | |
└podcastImageUrlnullable | string | |
└episodeImageUrlnullable | string | |
└podcastSlug | string | |
└episodeSlug | string | |
└requestedAt | date | |
└requestedByUserId | string | |
└transcribedAtnullable | date | |
└status | string |