Flowlix Payments API
Flowlix is a modern payment processing platform built for European merchants. Our API follows industry-standard conventions so you can integrate quickly and confidently.What you can do
Direct API Payments
Charge cards directly from your backend with full control over the payment flow.
Hosted Payment Page
Redirect customers to a Flowlix-hosted page — no PCI burden on your side.
Refunds
Issue full refunds on any successful payment with a single API call.
Test Mode
Build and test your integration without moving real money.
API design principles
The Flowlix API is designed to feel immediately familiar to any developer who has integrated a payment API:- RESTful — Standard HTTP methods, predictable URL structure, JSON bodies.
- Bearer token auth — Simple
Authorization: Bearer sk_...header. - Idempotency — Safely retry any write request with an
Idempotency-Keyheader. - Cursor pagination — Efficiently page through large result sets with
starting_after/ending_before. - Minor units — All amounts are in the smallest currency unit (e.g., cents for EUR).
- Consistent errors — Structured error objects with
type,code,message, anddecline_codefields.
Base URL
All API requests go to:Authentication
Every request must include a valid API key in theAuthorization header:
| Prefix | Environment | Real charges? |
|---|---|---|
fl_test_sk_ | Test mode | No |
fl_live_sk_ | Live mode | Yes |
Next steps
Quickstart
Make your first payment in under 5 minutes.