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 that calls the Pixwel API, ready to paste.
HTTP Basic auth over HTTPS. Base64-encode your email and API token — no OAuth flow, no SDK required.
Use the X-Range header to page through large collections efficiently — the same way the Pixwel UI does it.
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)