Make live requests against staging — right here.
Sign in to make live requests
Reference docs, live testing, and AI-assisted code generation — all in one place.
Fully documented endpoints with live "Try it" requests against staging. Browse schemas, parameters, and response shapes.
Describe what you want in plain English. Get working JavaScript back, ready to run against the API — no SDK required.
Every endpoint has a built-in Try it panel wired to staging. Explore requests and responses without any local setup.
Manage translations, dubbed audio, and spotting lists across 50+ languages — all through the same REST API.
All requests use HTTP Basic auth — base64-encode email:token-TOKEN. Page results with the X-Range header.
const res = await fetch('https://api-staging.pixwel.com/api/assets', {
headers: {
Authorization: 'Basic <base64(email:token-TOKEN)>',
'X-Range': 'resources=0-24',
Accept: 'application/json',
},
})
const assets = await res.json()
console.log(assets[0].title)