Open Exchange HOA API
The Open Exchange HOA API lets you manage HOA operations programmatically. Integrate property data, HOA information, violations, charges, and lease approvals into your software. Built for developers, this API simplifies complex HOA interactions, allowing you to automate processes and reduce manual work in your SFR portfolio management.
Authentication
This API uses bearer tokens for authentication. To access the API endpoints, you need to include a valid API token in the Authorization header of your requests. Example:
Authorization: Bearer YOUR_API_TOKEN
To obtain an API token, please contact our support team at support@mayhoa.com.
Rate Limiting
This API implements rate limiting to maintain system stability. The current rate limit is 100 requests per minute per API key. Rate limit details are included in the response headers:
- X-RateLimit-Limit: Maximum number of requests allowed per minute
- X-RateLimit-Remaining: Number of requests remaining in the current time window
- X-RateLimit-Reset: Time (in seconds) until the rate limit resets
Error Handling
This API uses conventional HTTP response codes to indicate the success or failure of an API request. In general:
- 2xx range indicate success
- 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, etc.)
- 5xx range indicate an error with our servers
Pagination
List endpoints support pagination using 'page' and 'limit' query parameters. The response includes metadata about the total number of items and current page.
Production server