Authentication
Secure your API requests using Bearer Token authentication.
You can manage your API keys in the Dashboard. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
Authorization Header
All API requests must include your API key in the Authorization HTTP header as a Bearer token:
Authorization: Bearer feo_live_...
Failed Authentication
If you do not provide a valid API key, the API will return a 401 Unauthorized error.
{
"error": {
"code": "unauthorized",
"message": "Invalid API key provided."
}
}