Search
One search across the organization.
1 endpoint · base URL https://api.aerscheduler.com
get
/searchSearch across the organization
One search over aircraft, members, bookings, and locations. The results are narrowed to what your roles allow, per entity type — so this is safe to expose to any member.
q is optional: omitting it returns the newest few of each type, which is what a search screen shows before anyone types.
Query parameters
q | string | Free-text filter. Matches the fields a person would search on. |
types | string | Comma-separated entity types to search. Defaults to all. |
limit | integer | Maximum matches per type. |
Responses
200 | OK | Success.→ { data: SearchResults } |
401 | Unauthorized | No token, an expired token, or a malformed one. Sign in again. |
403 | Forbidden | Authenticated, but not allowed to do this. |
429 | Too Many Requests | Rate limited. Retry-After says how long to wait. |
Example request
curl https://api.aerscheduler.com/search \
-H "Authorization: Bearer $AERSCHEDULER_TOKEN"