Get Pricing
curl --request GET \
--url https://api.fyatu.com/api/v3/account/pricing \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.fyatu.com/api/v3/account/pricing"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fyatu.com/api/v3/account/pricing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fyatu.com/api/v3/account/pricing",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fyatu.com/api/v3/account/pricing"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fyatu.com/api/v3/account/pricing")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fyatu.com/api/v3/account/pricing")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"status": 200,
"message": "Pricing retrieved successfully",
"data": {
"appType": "issuing",
"fees": [
{
"code": "CARD_ISSUANCE_FEE",
"name": "Card Issuance Fee",
"type": "FIXED",
"rate": 5,
"minFee": null,
"maxFee": null,
"isWaived": false
},
{
"code": "CARD_FUNDING_FEE",
"name": "Card Funding Fee",
"type": "PERCENTAGE",
"rate": 1.5,
"minFee": 0.5,
"maxFee": null,
"isWaived": false
}
]
},
"meta": {
"requestId": "req_abc123def456",
"timestamp": "2026-01-05T10:30:00+00:00"
}
}{
"success": false,
"status": 401,
"message": "Unable to identify business",
"error": {
"code": "AUTH_TOKEN_INVALID"
},
"meta": {
"requestId": "req_abc123",
"timestamp": "2026-01-05T10:30:00+00:00"
}
}Account
Get Pricing
Retrieve current Fyatu API pricing and fee schedule — card issuance fees, funding fees, and transaction costs. GET /account/pricing.
GET
/
account
/
pricing
Get Pricing
curl --request GET \
--url https://api.fyatu.com/api/v3/account/pricing \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.fyatu.com/api/v3/account/pricing"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fyatu.com/api/v3/account/pricing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fyatu.com/api/v3/account/pricing",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fyatu.com/api/v3/account/pricing"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fyatu.com/api/v3/account/pricing")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fyatu.com/api/v3/account/pricing")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"status": 200,
"message": "Pricing retrieved successfully",
"data": {
"appType": "issuing",
"fees": [
{
"code": "CARD_ISSUANCE_FEE",
"name": "Card Issuance Fee",
"type": "FIXED",
"rate": 5,
"minFee": null,
"maxFee": null,
"isWaived": false
},
{
"code": "CARD_FUNDING_FEE",
"name": "Card Funding Fee",
"type": "PERCENTAGE",
"rate": 1.5,
"minFee": 0.5,
"maxFee": null,
"isWaived": false
}
]
},
"meta": {
"requestId": "req_abc123def456",
"timestamp": "2026-01-05T10:30:00+00:00"
}
}{
"success": false,
"status": 401,
"message": "Unable to identify business",
"error": {
"code": "AUTH_TOKEN_INVALID"
},
"meta": {
"requestId": "req_abc123",
"timestamp": "2026-01-05T10:30:00+00:00"
}
}Overview
Retrieve the fees applicable to your business account. The fees returned depend on your app type:| App Type | Fee Categories |
|---|---|
collection | Collection fees, Payout fees |
issuing | Card fees |
Fee Structure
Each fee in the response includes:| Field | Type | Description |
|---|---|---|
code | string | Unique fee identifier |
name | string | Human-readable fee name |
type | string | FIXED or PERCENTAGE |
rate | number | Fee amount (USD for FIXED, percentage for PERCENTAGE) |
minFee | number | Minimum fee (for percentage-based fees) |
maxFee | number | Maximum fee cap (if applicable) |
isWaived | boolean | Whether this fee is currently waived for your account |
Collection App Fees
| Fee Code | Description |
|---|---|
COLLECTION_FEE | Fee per collection transaction |
PAYOUT_FEE | Fee per payout/disbursement |
Issuing App Fees
| Fee Code | Description |
|---|---|
CARD_ISSUANCE_FEE | One-time fee when creating a card |
CARD_FUNDING_FEE | Fee when adding funds to a card |
CARD_UNLOADING_FEE | Fee when withdrawing from a card |
CARD_DELETION_FEE | Fee when deleting a card |
CARD_MONTHLY_FEE | Monthly maintenance fee |
Example Usage
const response = await fetch('https://api.fyatu.com/api/v3/account/pricing', {
headers: {
'Authorization': `Bearer ${accessToken}`
}
});
const { data } = await response.json();
console.log(`App Type: ${data.appType}`);
data.fees.forEach(fee => {
if (fee.type === 'FIXED') {
console.log(`${fee.name}: $${fee.rate}`);
} else {
console.log(`${fee.name}: ${fee.rate}%`);
}
});
Check
isWaived to determine if a fee is currently waived for your account, often as part of promotional offers or custom pricing arrangements.⌘I

