Quick ReferenceRequired:
client-id, client-secretReturns: x_api_key (valid for 30 minutes)Endpoint: GET https://auth.fastflowpe.com/system/generate_x_api_token_merchantMethod 1: Generate via API
Use this method in production systems. Send a GET request to the FastFlowPe authentication endpoint with yourclient-id and client-secret as headers. The response returns a fresh X-API-Key you can use immediately.
Request
data.x_api_key and store it securely in your application. Include it as an x-api-key header on every subsequent API call.
When you generate a new X-API-Key, the previous key is automatically and immediately invalidated. If multiple services share the same merchant account, coordinate key rotation so one service does not invalidate another’s active key.
Method 2: Generate via Dashboard
Use this method during development, testing, or whenever you need a one-off key without writing code. Log in to the merchant dashboard, navigate to the API settings page, and click the Generate Key button to issue a new X-API-Key instantly.1
Log In to the Merchant Dashboard
Go to https://go.fastflowpe.com/ and sign in with your registered email address and password.
2
Navigate to API Settings
From the main navigation, go to Settings → API. This page shows your Client ID, Client Secret, and currently active X-API-Key.
3
Generate a New X-API-Key
Locate the X-API Key section and click the Generate Key button (highlighted in red). A new key is generated and activated immediately.
4
Copy the New Key
Copy the newly generated X-API-Key from the dashboard and add it to your application configuration or use it directly for testing.
Using Your X-API-Key in API Requests
Once you have a valid key, include it as a request header on every FastFlowPe API call:x-api-key header, or with an expired or revoked key, are rejected with a 401 Unauthorized response.