Learn how to query an account's platform API daily usage
All monday.com accounts are subject to the platform API daily call limit. This limit restricts the number of calls made in a day to prevent excessive load from individual accounts, maintains the API service as a free feature across all plans, and controls operational costs to continue delivering value to all our users.
🚧 Enterprise accounts can retrieve this data through the API analytics dashboard or by querying the platform_api endpoint.
Queries
Get platform API
- Returns an object containing metadata about the account's daily API usage
- Can only be queried directly at the root; can't be nested within another query
query {
platform_api {
daily_analytics {
by_day {
day
usage
}
by_app {
app {
name
}
api_app_id
usage
}
by_user {
user {
name
}
usage
}
last_updated
}
}
}Fields
| Fields | Type | Description | Supported Subfields |
|---|---|---|---|
| daily_limit | DailyLimit | The account's daily call limit. | base Inttotal Int (includes extensions, if any) |
| daily_analytics | DailyAnalytics | The account's daily call limit analytics (by app, by day, or by user). | by_app [PlatformApiDailyAnalyticsByApp!]!by_day [PlatformApiDailyAnalyticsByDay!]!by_user [PlatformApiDailyAnalyticsByUser!]!last_updated ISO8601DateTime |
