OpenAPI 3.1 · v2.8

Build on the Pixwel Platform

The complete REST API for assets, workflows, users, and orders. Documented, explorable, and ready to integrate.

60+
Endpoints
REST
Architecture
JSON
Response format
3.1
OpenAPI spec
Quick start

Up and running in minutes

All requests use HTTP Basic auth — base64-encode email:token-TOKEN. Page results with the X-Range header.

example.js
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)