Endpoint: https://api.textifyaudio.com/api/Transcribe
using var client = new HttpClient();
var url = "https://api.textifyaudio.com/api/Transcribe?includeTimestamps=true&key=YOUR_API_KEY";
var response = await client.PostAsJsonAsync(url, new { url = "https://example.com/audio.mp3" });
var json = await response.Content.ReadAsStringAsync();
import requests
payload = {"url": "https://example.com/audio.mp3"}
resp = requests.post("https://api.textifyaudio.com/api/Transcribe?includeTimestamps=true&key=YOUR_API_KEY", json=payload)
print(resp.json())
fetch("https://api.textifyaudio.com/api/Transcribe?includeTimestamps=true&key=YOUR_API_KEY", {
method: "POST",
headers: {"Content-Type": "application/json"},
body: JSON.stringify({ url: "https://example.com/audio.mp3" })
}).then(r => r.json()).then(console.log);