Bancoagrícola Logo
RefundsTokenization

Country:

POST

/tokens

Tokenize Card

Create a secure token for card information

card_number

string
required

Credit card number to tokenize

example

expiry_month

string
required

Card expiry month (MM)

example

expiry_year

string
required

Card expiry year (YYYY)

example

Response Examples

200

Card tokenized successfully

400

Invalid card data

500

Internal server error

Language

Login required to test API

Code Examples

cURL

curl -X POST "https://api.akua.la/tokens" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "card_number": "4111111111111111",
  "expiry_month": "12",
  "expiry_year": "2025"
}''