Generate an API key
- Open your Formcarry dashboard.
- Go to API Keys.
- Click Create key, choose the scopes it needs, and copy the key.
fc_live_. Copy the key immediately; it is shown only once.
Send the token
Pass the key in theAuthorization header on every request using the Bearer scheme.
The header name is
Authorization, not api_key. The previous api_key header used by the legacy API is no longer accepted on api.formcarry.com.Verify a key
CallGET /v1/me to confirm a key is valid and inspect the workspace, key ID, and granted scopes it represents.
200 OK with details about the authenticated key. An invalid or revoked key returns 401 with code: "invalid_key", and a missing header returns 401 with code: "missing_bearer".
Scopes
Each key is issued with one or more scopes that gate which endpoints it can call. The four scopes:
If a key is missing the required scope for an endpoint, the API returns
403 with code: "insufficient_scope". Create a new key with the correct scopes rather than upgrading an existing key in place.