Relograde API Docs

Overview

Get started with the Relograde API

Welcome

The Relograde API enables you to integrate Relograde's payment infrastructure directly into your platform. Our documentation is also available as an OpenAPI spec:

Relograde API

View the OpenAPI specification

Environments

The Relograde API has two environments:

EnvironmentDescription
ProductionRequires a verified account. Uses real money.
SandboxAvailable to unverified accounts. Mirrors production behavior but does not use real money.

Prices may be different in the sandbox environment for unverified accounts.

Authentication

The API uses Bearer token authentication. Include your API key in every request:

Authorization: Bearer <your-api-key>

Obtaining API Keys

Log in or register at the Relograde Console
Navigate to the profile icon in the top right
Click Company
Click API Keys
Generate keys for your desired environment (Sandbox or Production)

Same paths across environments

Both Sandbox and Production use identical API paths. Only the API key differs.

IP Whitelist

Restrict API access to specific IP addresses. Supported formats:

FormatExample
Single IP192.168.1.1
Multiple IPs192.168.1.1, 192.168.1.2
CIDR Range192.168.1.0/24

Whitelist behaviour

  • Leave the field empty to permit access from any IP address.
  • Only IPv4 addresses are supported.
  • Use commas to separate multiple entries.

URL

Relograde API urls adhere to the following structure:

{BASE_URL}/api/{VERSION}/{RESOURCE}

Base URLhttps://connect.relograde.com
Current version1.03

Examples:

https://connect.relograde.com/api/1.03/account
https://connect.relograde.com/api/1.03/brand
https://connect.relograde.com/api/1.03/order
https://connect.relograde.com/api/1.03/product

Rate Limits

EnvironmentRequests per minute
Sandbox60
Production60

Rate limit exceeded

Requests that exceed the limit will receive a 429 rate_limit_exceeded response. Implement exponential backoff before retrying.

Error Handling

StatusCodeDescription
400bad_requestThe request was malformed or missing required fields
401unauthorizedMissing or invalid API key
402payment_requiredInsufficient account balance
403forbiddenRequest origin is not whitelisted
404not_foundThe requested resource does not exist
429rate_limit_exceededToo many requests, slow down and retry
500server_errorAn unexpected error occurred on our side

On this page