client.createTranscription(...)
import ai.stats.sdk.AIStats;
AIStats client = new AIStats(System.getenv("AI_STATS_API_KEY"));
String body = """
{
"model": "openai/whisper-1",
"file": "data:audio/mpeg;base64,..."
}
""";
Object response = client.createTranscription(body);
System.out.println(String.valueOf(response));