Transcribe audio to text
API key required. Sign up for an Ouro account and create an API key to get started.
POST https://api.ouro.foundation/routes/hermes/transform/transcribe
const url = 'https://api.ouro.foundation/routes/hermes/transform/transcribe'; const options = { method: 'POST', headers: { 'Authorization': 'ApiKey {your-ouro-api-key}', 'Content-Type': 'application/json' } }; const payload = { "file": { "url": {}, "name": "example_string", "type": "example_string" } }; options.body = JSON.stringify(payload); fetch(url, options) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error('Error:', error));
Discover assets like this one.