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
- Get an API key from your Remy integration settings
- 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
| Method | Path | Purpose |
|---|---|---|
GET | /v1/public/auth | Verify an API key and return the connected merchant. |
POST | /v1/public/orders/create | Process an order for loyalty stamps, points, and rewards. |
POST | /v1/public/rewards/update-coupon | Set a coupon code on an unredeemed reward. |
GET | /v1/public/vouchers | List issued customer vouchers. |
GET | /v1/public/vouchers/{id} | Get an issued customer voucher. |
GET | /v1/public/vouchers/{id}/pdf | Download an issued voucher PDF. |
POST | /v1/public/vouchers/{id}/redeem | Fully or partially redeem an issued voucher. |