For the complete documentation index, see llms.txt. This page is also available as Markdown.

Authentication

The Flylogs API authenticates with API keys. An API key is a long-lived secret, created by a Company Administrator, that you send on every request. There is no login step for API access — you do not exchange an email and password for a token.

Authorization: Bearer flk_3pQ8XnX...Zr
curl https://fmc.flylogs.com/v1/users/view.json \
  -H "Authorization: Bearer flk_3pQ8XnX...Zr"

A key authenticates as the user it is bound to and inherits that user's permissions. It remains valid until it is revoked, or until its optional expiry date passes — it is not affected by inactivity or logout.

It also stops working if the bound user's account has expired, been deactivated or deleted — even if the key itself has no expiry date set. Note that External Auditor accounts never have an API key in the first place — only company managers can have one, always bound to their own account.

Don't have a key yet? See API Keys for how a Company Administrator creates, lists and revokes them under Company Settings → API.

Authenticating a request

Header

Authorization: Bearer <api-key>

Key format

Begins with flk_

Lifetime

Until revoked, or the optional expiry date

Permissions

Inherited from the user the key is bound to

For file-download endpoints that open in a new window (XLS, PDF), the key may also be supplied as a ?token= query parameter:

https://fmc.flylogs.com/v1/safety_reports/view/150/pdf:true?token=<api-key>

Error responses

Status
Meaning

401

API key missing, invalid, expired or revoked

403

The bound user lacks permission for this endpoint

429

Rate limited — reduce request frequency

Last updated