1 | |
2 | type Ultravox = { |
3 | apiKey: string; |
4 | }; |
5 | |
6 | * Calls stages messages audio retrieve |
7 | * |
8 | */ |
9 | export async function main( |
10 | auth: Ultravox, |
11 | call_id: string, |
12 | call_stage_id: string, |
13 | call_stage_message_index: string, |
14 | ) { |
15 | const url = new URL( |
16 | `https://api.ultravox.ai/api/calls/${call_id}/stages/${call_stage_id}/messages/${call_stage_message_index}/audio`, |
17 | ); |
18 |
|
19 | const response = await fetch(url, { |
20 | method: "GET", |
21 | headers: { |
22 | "X-API-Key": auth.apiKey, |
23 | }, |
24 | body: undefined, |
25 | }); |
26 | if (!response.ok) { |
27 | const text = await response.text(); |
28 | throw new Error(`${response.status} ${text}`); |
29 | } |
30 | return await response.text(); |
31 | } |
32 |
|