Integration Notes
Server-To-Server integration
We expect a server-to-server integration; your clientId
and clientSecret
should not be part of any frontend (app, web, …).
Rate Limiting
Our APIs are rate-limited. Rate-limits can be configured for each client credential. After you have obtained an accessToken, you can use the [/auth/me](https://docs.partner-api.monta.com/reference/get-auth-information)
endpoint to see your rate limit. It's determined by two fields:
rateLimit
, e.g. 1000rateLimitIntervalInSeconds
, e.g. 600
This means that you can perform 1000 calls to our API within 600 seconds (10 minutes) before you get rate-limited (until the next 600s block starts).
Pagination
All endpoints that return a collection are paginated using Offset Pagination.
Header Based Versioning
Monta uses header-based versioning for its API.
- The default version is
2024-01-18
. If you don’t specify a version in the request header, this version will be used automatically. - A newer version
2024-07-01
is currently available in beta. To use this version, include the following header in your API requests:
Monta-Version: 2024-07-01
Updated 1 day ago