- API access. The Admin API is available on the Superest plan and on custom plans. Contact support from the app to request it.
- An API key. Create keys under Integrations. See Authentication.
- The base URL. Every request goes to
https://app.supercycle.com/api/v1.
API structure
The Admin API follows REST conventions:- Resources are accessed with the standard HTTP methods
GET,POST,PUT, andDELETE. - Requests and responses are JSON.
- Responses use standard HTTP status codes.
- List endpoints are paginated.
Cycles
List, fetch, and update cycles at/cycles and /cycles/{cycleId}. These are the canonical paths.
The /rentals paths remain available as deprecated aliases with identical behavior. In API v1, request and response bodies still use the Rental schema and rental-named properties such as rentalStart, rentalEnd, and reallocateConflictingRentals. A schema rename is planned for API v2.
Rate limits
Requests are rate limited to keep the platform stable. When you exceed the limit, the API returns429 Too Many Requests. Back off and retry. If your integration needs a higher limit, contact support from the app and describe the use case.