Account
Every API call (except obtaining a token) requires a Bearer token in the Authorization header:
Authorization: Bearer <access_token>Authentication
Obtain Token
Account
Get Usage
Retrieve current API usage statistics for your account, including daily and monthly limits and consumption.
Endpoint: GET /v1/account/get_usage
Authentication: Required (Bearer token)
Response:
Response Fields:
resources- Object containing usage data for each resource type (dynamic based on account access)[resource_key]- Usage data for a specific resource (e.g.,property)name- Human-readable resource namedaily_limit- Maximum daily usage alloweddaily_usage- Requests consumed todaymonthly_limit- Maximum monthly usage allowedmonthly_usage- Requests consumed this billing period
Note: The response only includes resources with usage tracking enabled for your account.
Example Request:
Get Usage History
Retrieve historical API usage data for your account. Returns the last 60 days of usage data.
Endpoint: GET /v1/account/get_usage_history
Authentication: Required (Bearer token)
Response:
Response Fields:
[resource_key]- Historical usage data for each resource (e.g.,property)name- Human-readable resource namedata- Array of daily usage records (last 60 days, only includes days with activity)date- Date in YYYY-MM-DD formatusage_count- Number of requests consumed on that date
Note: The response only includes resources with usage tracking enabled for your account. The data array only contains entries for dates with activity (non-zero usage).
Example Request:
Last updated