Filters - Age Ranges
maxAge[lte]
The ageRange.maxAge[lte] parameter can be used to define a maximum age limit to a query. It will only return sessions that have a maximum age less than or equal to the value supplied. For example if ageRange.maxAge[lte]=17 was supplied, only sessions that allow 17 year olds and younger will be returned. 18 year olds and older would not be allowed to these sessions.
minAge[gte]
The ageRange.minAge[gte] parameter can be used to define a minimum age limit to a query It will only return sessions that have a minimum age greater than or equal to the value supplied. For example if ageRange.minAge[gte]=18 was supplied, only sessions that 18 year olds and older will be returned. 17 years and younger would not be allowed to these sessions.
include-range
The ageRange[include-range] parameter can be used to define an acceptable age range for a session to be in. The format for this parameter (which can also be found in our API specification) can be the following:
{minAge}or
{minAge},{maxAge}When only a {minAge} is specified, only sessions that allow that age will be return. For example, if ageRange[include-range]=18 was specified, any sessions that allow 18 years old will be returned.
If {minAge},{maxAge} are supplied, only sessions that allow all ages in the range are returned. For example if ageRange[include-range]=18,55 only sessions that allow 18 year olds, 55 year olds, and all ages in between will be returned.