### Environments Source: https://docs.relograde.com/overview The Relograde API offers two environments: Production for verified accounts and Sandbox for testing with unverified accounts. The Sandbox environment mimics production but does not use real money. ```APIDOC ## Environments The Relograde API has two environments: * **Production**: Requires a verified account. * **Sandbox**: Can be used with an unverified account. Mimics production but does not use real money. Prices may differ for unverified accounts. ``` -------------------------------- ### Environments Source: https://docs.relograde.com/index The Relograde API offers two environments: Production for verified accounts and Sandbox for testing with unverified accounts. Both environments share the same API paths. ```APIDOC ## Environments The Relograde API has two environments: * **Production**: Requires a verified account. * **Sandbox**: Can be used with an unverified account. Mimics production but does not use real money; prices may differ. ``` -------------------------------- ### Rate Limits Source: https://docs.relograde.com/overview Both the Sandbox and Production environments allow 60 requests per minute. ```APIDOC ## Rate Limits | Environment | Requests per minute | |---------------|---------------------| | Sandbox | 60 | | Production | 60 | ``` -------------------------------- ### Obtaining API Keys Source: https://docs.relograde.com/overview API keys can be generated from the Relograde Console. Follow the steps to navigate to the API keys section within your company profile. ```APIDOC ## Obtaining API Keys 1. Log in or register to the Relograde Console. 2. Navigate to the profile icon on the top right. 3. Click on “Company”. 4. Click on “API keys”. 5. Generate keys for either the Sandbox or Production environment. ``` -------------------------------- ### URL Structure Source: https://docs.relograde.com/overview Relograde API URLs follow the structure `{BASE_URL}/api/{VERSION}/{RESOURCE}`. The base URL is `https://connect.relograde.com` and the current version is `1.02`. ```APIDOC ## URL Relograde API urls adhere to the following structure: `{BASE_URL}/api/{VERSION}/{RESOURCE}` * **Base URL**: `https://connect.relograde.com` * **Current Version**: `1.02` **Examples:** ``` https://connect.relograde.com/api/1.02/account https://connect.relograde.com/api/1.02/brand https://connect.relograde.com/api/1.02/order https://connect.relograde.com/api/1.02/product ``` ``` -------------------------------- ### Whitelist IP Addresses Source: https://docs.relograde.com/overview Restrict API access to specific IP addresses. Supports single IPs, multiple IPs separated by commas, and CIDR ranges. Leaving the field empty allows access from any IP. ```APIDOC ## Whitelist Restrict API access to designated IP addresses. The following configurations are supported: * Single IP Address: `192.168.1.1` * Multiple IP Addresses: `192.168.1.1`, `192.168.1.2` * CIDR Range: `192.168.1.0/24` (encompasses `192.168.1.0` to `192.168.1.255`) **Note:** * Leave the field empty to permit access from any IP address. * Use commas to delineate multiple entries. * Only IPv4 addresses are supported. ``` -------------------------------- ### Authentication Source: https://docs.relograde.com/overview The Relograde API uses Bearer token authentication. Include your API key in the Authorization header for all requests. ```APIDOC ## Authentication The API uses Bearer token authentication. Include your API key in the `Authorization` header with all requests. `Authorization: Bearer ` ``` -------------------------------- ### Error Codes Source: https://docs.relograde.com/index This section details the various error codes returned by the API, along with their corresponding HTTP status codes and descriptions. ```APIDOC ## Error Handling ### Error Codes | Status | Code | Description | |--------|---------------|-------------------| | 400 | `bad_request` | Invalid request | | 401 | `unauthorized`| Missing or invalid API key | | 402 | `payment_required` | insufficient balance | | 403 | `forbidden` | IP not whitelisted | | 404 | `not_found` | Item not found | | 429 | `rate_limit_exceeded` | Too many requests | | 500 | `server_error`| Internal server error | ``` -------------------------------- ### Error Codes Source: https://docs.relograde.com/overview Overview of common error codes returned by the Relograde API, including their status codes and descriptions. ```APIDOC ## Error Handling ### Error Codes | Status | Code | Description | |--------|---------------|--------------------| | 400 | `bad_request` | Invalid request | | 401 | `unauthorized`| Missing or invalid API key | | 402 | `payment_required` | insufficient balance | | 403 | `forbidden` | IP not whitelisted | | 404 | `not_found` | Item not found | | 429 | `rate_limit_exceeded` | Too many requests | | 500 | `server_error`| Internal server error | ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.