Used 38 / 480 min

RD
Choose a recording API reference
coire-session-19.wav · 42:08

Instruction

List the speakers in this recording and mark where each one takes over.

temperature 0.3diarise v2

27/512 tokens

Export snippet

The console builds this call for you as you edit. Copy it into your own service and point it at any recording you have already uploaded. Rate limits and every field are covered in the API reference ↗

Request Response
JavaScript
1// Variables
2const BASE_URL = "https://api.scarba.io/v2"
3const data = {
4 "asset_id": "b73d19e0c4f8",
5 "prompt": "List the speakers in this recording and when each one talks",
6 "temperature": 0.3
7}
8
9// Send request
10async function request() {
11 const response = await fetch(`${BASE_URL}/analyze`, {
12 method: "post",
13 headers: { "Content-Type": "application/json" },