SeloraXDEVELOPERS

Build on SeloraX

Create powerful apps, integrations, and automations for the SeloraX e-commerce platform. Everything you need to extend merchant stores.

$ curl https://api.selorax.io/api/apps/v1/orders \
  -H "Authorization: Bearer sx_at_your_token"

// Response
{
  "message": "Orders fetched successfully.",
  "data": [...orders],
  "status": 200
}
Capabilities

Everything you need to build

From REST APIs to real-time webhooks, billing to embedded iframes — the SeloraX platform gives you the tools to build any integration.

Start building in minutes

Create a custom app from the merchant dashboard and start making API calls immediately. No OAuth setup required.

  • 1Go to Settings → Apps → Manage and click Create Custom App
  • 2Select API scopes and configure optional webhooks
  • 3Copy your access token and start making API calls
const axios = require("axios");

const res = await axios.get(
  "https://api.selorax.io/api/apps/v1/orders",
  {
    headers: {
      Authorization: `Bearer ${TOKEN}`,
    },
    params: { page: 1, limit: 20 },
  }
);

console.log(res.data.data);
// → [{order_id: 1001, status: "confirmed"}, ...]

Ready to build?

Start with the platform overview or dive straight into the API reference.