Back to Help Center
API Documentation
Integrate Inquly with your applications using our REST API. Create properties, manage tenants, generate invoices, and more.
Base URL
https://your-domain.com/api/v1All API requests should be made to this base URL. Replace "your-domain.com" with your actual Inquly instance domain.
Rate Limits
API access is available on Medium and Business plans. Rate limits vary by tier. Exceeding the limit returns a 429 status code.
| Plan | Requests/Hour | Webhooks |
|---|---|---|
| Medium | 1,000 | 10 |
| Business | 5,000 | 25 |
Quick Example
List all your properties with a single API call:
curl -X GET "https://your-domain.com/api/v1/properties" \
-H "Authorization: Bearer inq_live_xxxxxxxxxxxxx"Response Format
All successful responses follow this structure:
{
"success": true,
"data": [...],
"pagination": {
"page": 1,
"limit": 20,
"total": 45,
"hasMore": true
}
}Need help with the API?
Check our FAQ or contact support for assistance.