Added

New `is_trial_expired` and `is_during_trial` fields on `account`

🏷️ API version: 2026-01

You can now determine a monday.com account's trial status via the API using two new fields on the account object:

  • is_trial_expired: Returns true if the account's trial period has ended
  • is_during_trial: Returns true if the account is currently in a trial period
query {
  account {
    is_during_trial
    is_trial_expired
  }
}