Getting started
This guide walks through making your first authenticated request.
1. Get an API key
API keys are minted from the Feathr app. Each key is opaque — Feathr stores only a hash of it, so the secret is shown once at creation and cannot be recovered afterward. Copy it somewhere safe.
A key looks like:
fthr_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
When you create a key you also choose its scopes — the set of operations it
may perform (for example persons:read or tags:write). Grant only the scopes
the integration needs.
2. Make a request
Send the key as a bearer token in the Authorization header:
curl https://api.feathr.co/me \
-H "Authorization: Bearer $FEATHR_API_KEY"
GET /me returns the identity and scopes behind the key — a quick way to
confirm your credentials work:
{
"account_id": "5f8e...c21a",
"scopes": ["persons:read", "tags:write"],
"key_id": "6a1b...9f30"
}