Added
New `is_trial_expired` and `is_during_trial` fields on `account`
December 16th, 2025
🏷️ 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: Returnstrueif the account's trial period has endedis_during_trial: Returnstrueif the account is currently in a trial period
query {
account {
is_during_trial
is_trial_expired
}
}