Skip to main content
Check out our integration guide to get started.

Base URL

https://api.priceos.com

Authorization

Send your API key in the x-api-key header on every request.
const response = await fetch("https://api.priceos.com/v1/feature-access?customerId=customer_123", {
  headers: {
    "x-api-key": process.env.PRICEOS_API_KEY!,
  },
});
Never expose your API key in client-side code.

Postman collection

Download Postman collection

Rate limits

Rate limits are applied per API key (x-api-key) using a fixed 10-second window.
  • All routes: 1000 requests per 10 seconds per API key.
  • PUT, POST, DELETE routes: 500 requests per 10 seconds per API key.
If you exceed a limit, the API returns 429 Too Many Requests.