curl --request GET \
--url https://api.platform.dakota.xyz/self-serve/credits/pricing \
--header 'x-api-key: <api-key>'const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.platform.dakota.xyz/self-serve/credits/pricing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.platform.dakota.xyz/self-serve/credits/pricing"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.platform.dakota.xyz/self-serve/credits/pricing"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"monthlyMinimumCents": 10000,
"transferFeeBps": 25,
"achFeeCents": 100,
"wireFeeCents": 2500,
"sepaFeeCents": 150,
"swiftFeeCents": 2500,
"kycFeeCents": 500,
"kybFeeCents": 2500,
"effectiveFrom": "2024-01-01T00:00:00Z",
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-01T00:00:00Z",
"transferFeeOverrides": []
}{
"type": "https://docs.dakota.xyz/api-reference/errors#authentication-error",
"title": "Authentication Required",
"status": 401,
"detail": "Missing or invalid authentication credentials."
}{
"type": "https://docs.dakota.xyz/api-reference/errors#forbidden",
"title": "Forbidden",
"status": 403,
"detail": "Credit management is only available for self-serve customers."
}Get the self-serve client's pricing config (fee schedule)
Returns the caller’s ClientPricingConfig. Self-serve clients only
(enterprise clients receive 403). Used by the dashboard’s Fee
Schedule card to render the active fee structure.
curl --request GET \
--url https://api.platform.dakota.xyz/self-serve/credits/pricing \
--header 'x-api-key: <api-key>'const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.platform.dakota.xyz/self-serve/credits/pricing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.platform.dakota.xyz/self-serve/credits/pricing"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.platform.dakota.xyz/self-serve/credits/pricing"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"monthlyMinimumCents": 10000,
"transferFeeBps": 25,
"achFeeCents": 100,
"wireFeeCents": 2500,
"sepaFeeCents": 150,
"swiftFeeCents": 2500,
"kycFeeCents": 500,
"kybFeeCents": 2500,
"effectiveFrom": "2024-01-01T00:00:00Z",
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-01T00:00:00Z",
"transferFeeOverrides": []
}{
"type": "https://docs.dakota.xyz/api-reference/errors#authentication-error",
"title": "Authentication Required",
"status": 401,
"detail": "Missing or invalid authentication credentials."
}{
"type": "https://docs.dakota.xyz/api-reference/errors#forbidden",
"title": "Forbidden",
"status": 403,
"detail": "Credit management is only available for self-serve customers."
}Authorizations
Response
Current pricing config.
Monthly minimum fee in cents
x >= 010000
Transfer fee in basis points (0-10000, representing 0% to 100%)
0 <= x <= 1000025
Per-ACH transaction fee in cents
x >= 0100
Per-wire transaction fee in cents
x >= 02500
Per-SWIFT transaction fee in cents
x >= 0150
Per-Swift-transfer banking fee in USD cents, debited from the prepaid credit balance on outbound transfers only; deposits carry no banking fee. Self-serve default is 2500 ($25.00).
x >= 02500
Per-individual-application-submission compliance fee in USD cents.
x >= 0500
Per-business-application-submission compliance fee in USD cents.
x >= 02500
When this pricing takes effect
"2024-01-01T00:00:00Z"
When this pricing configuration was created
"2024-01-01T00:00:00Z"
When this pricing configuration was last updated
"2024-01-01T00:00:00Z"
Per-asset-pair transfer fee exceptions. Always present; empty when the client has none, in which case transferFeeBps applies to every pair.
Show child attributes
Show child attributes
Per-FedNow transaction fee in USD cents. Null when unset, in which case the client's ACH fee applies.
x >= 0100
Was this page helpful?

