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
You can use the platform_api query to retrieve API usage data via the 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
You can use the following fields to specify what information your platform_api query will return. Some fields support their own subfields.
Fields  | Description  | Supported Subfields  | 
|---|---|---|
daily_limit   | The account's daily call limit.  | base   | 
daily_analytics   | The account's daily call limit analytics (by app, by day, or by user).  | by_app   | 
