Quick Start
Get your API keys
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
You can generate an API key from your Dashboard at any time.
Authenticate
The best way to interact with our API is to authenticate to our official API's:
Card(server to server)
Wallet API
Wallet Payment Page
Token API
APM CHECKOUT (BLIK)
Checkout V3
Make your first request
To make your first request, send an authenticated request to the charges endpoint. This will create a charge
, which is nice.
Create a charge.
POST
https://{provided url}/v2/charges
Creates a new charge.
{
curl https://{provided url}/v2/charges \
-u sk_test_BQokikJOvBiI2HlWgH4olfQ2: \
-d source=KLVGBEFEBPZ7B4QW
-d payer[ip]=127.0.0.1 \
-d payer[id]=123 \
-d payer[firstname]=John \
-d payer[lastname]=Doe \
-d payer[email][email protected] \
-d payer[address_city]="Mannheim Neckarstadt" \
-d payer[address_country]=DE \
-d payer[address_line1]="Scharnweberstrasse 24" \
-d payer[address_line2]= \
-d payer[address_state]=BW \
-d payer[address_zip]=68-167 \
-d payer[phone]=+49062111272935 \
-x POST
Last updated