All endpoints require Authorization: Bearer {}API_KEY}
Submit audio processing jobs. Both flows supported. Async with polling or webhook callback.
Extract the 512-dimensional profile from any audio input.
Generate shareable SoundCards from processed vocals. Returns .ASC format and PNG export.
const response = await fetch('https://api.arisyn.ai/v1/jobs/submit', {
method: 'POST',
headers: {
'Authorization': `Bearer ${API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
flow: 'flow_b', // 'flow_a' | 'flow_b'
vocal_url: '...',
reference_url: '...', // flow_b only
blend: 0.7, // reference influence 0–1
webhook_url: '...' // optional async callback
})
});
const { job_id, estimated_seconds } = await response.json();Developer tier starts free. Enterprise and platform tiers available.
Request API Access