Now playing · 60+ endpoints

Build on the Pixwel Platform

The global media localization and workflow management platform. Complete REST API — documented, explorable, and ready to integrate.

60+
Endpoints
REST
Architecture
JSON
Response format
OpenAPI
Machine-readable

Try it out

Make live requests against staging — right here.

GEThttps://api-staging.pixwel.com/api/projects

Sign in to make live requests

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)