Accessing the API
The Rime Platform API is accessible via HTTP requests. The API is available as a paper-money sandbox environment and production environment. Endpoints:- Sandbox:
https://sandbox.api.rime.finance
- Production:
https://api.rime.finance
To access the production environment, your organization must be whitelisted by
Rime.
Authentication
All requests to the Rime Platform API must include anAuthorization
header with a gained access token. The access token must be provided with a Bearer
prefix (Bearer <token>
).
You can learn more on how to obtain an access token in the Authentication section.
Authentication
Learn how to obtain an access token and authenticate your requests.
Content types
The Rime Platform API always accepts JSON in request bodies and returns JSON in response bodies. Sending theContent-Type: application/json
header in requests is optional but recommended.