Developer reference

The Nexus API.

Build storefronts, bots and internal tools on top of your products, orders and customer data.

Authentication

Send a store API key in the x-api-key header. Keep keys on your server and never expose them in browser code.

curl https://api.nexus.dev/api/v1/stores/nexus/products \
  -H "x-api-key: nx_live_your_key"

List products

Retrieve published products from the canonical Nexus storefront.

GET /api/v1/stores/nexus/products

{
  "success": true,
  "data": [
    {
      "id": "prod_8f2a1c",
      "name": "Premium Vehicle Pack",
      "price": 999,
      "currency": "R$",
      "status": "PUBLISHED"
    }
  ]
}

Useful resources