Skip to main content

Overview

The Remy Developer Hub documents the public integration API for connecting order, customer, loyalty, and reward systems to Remy.

The API covers the core endpoints used to verify credentials, process orders, attach coupon codes to rewards, and work with issued customer vouchers.

Base URL

https://api.remyrewards.co.uk

Quick start

  1. Get an API key from your Remy integration settings
  2. Verify the key with GET /v1/public/auth
curl "https://api.remyrewards.co.uk/v1/public/auth" \
-H "Accept: application/json" \
-H "X-API-Key: YOUR_API_KEY"

All requests and responses use JSON unless otherwise noted. Production requests must use HTTPS.

Available endpoints

MethodPathPurpose
GET/v1/public/authVerify an API key and return the connected merchant.
POST/v1/public/orders/createProcess an order for loyalty stamps, points, and rewards.
POST/v1/public/rewards/update-couponSet a coupon code on an unredeemed reward.
GET/v1/public/vouchersList issued customer vouchers.
GET/v1/public/vouchers/{id}Get an issued customer voucher.
GET/v1/public/vouchers/{id}/pdfDownload an issued voucher PDF.
POST/v1/public/vouchers/{id}/redeemFully or partially redeem an issued voucher.