Fynex
API keys
One key authenticates both APIs. There is no second token to obtain for Billing, and no separate Payments credential. If you have a working key for one, it works for the other.
Where to get one for your own account
- Log in to the Fynex dashboard.
- Select your seller account.
- Open the Integration page and reveal the key on the API keys card.
You issue and rotate it yourself — nobody at Fynex has to do it for you. Keys are stored only as hashes, so a lost key cannot be recovered, only regenerated.
How to send it
Authorization: Bearer sk_test_...
Anything else — a missing header, a malformed value, an unrecognised key —
answers 401. This is a server-to-server API: never put a key in a
browser, a mobile app, or a query string.
Test or live
The prefix tells you which, and the ACCOUNT decides it, not the host. An account is in demo mode or live mode, never both:
sk_test_…— the account is in demo mode. No real money moves.sk_live_…— the account has gone live. Money is real.
After go-live the old test key answers 401. There is no parallel
test dataset behind the prefixes: the API always returns your account's own
records.
Test work goes to https://staging-api.fynex.ai, on the same paths.
Because mode is decided by the account, an sk_test_ key is test mode
wherever you send it.