Skip to main content
GET
/
self-serve
/
credits
/
pricing
Get the self-serve client's pricing config (fee schedule)
curl --request GET \
  --url https://api.platform.dakota.xyz/self-serve/credits/pricing \
  --header 'x-api-key: <api-key>'
{
  "monthlyMinimumCents": 10000,
  "transferFeeBps": 25,
  "achFeeCents": 100,
  "wireFeeCents": 2500,
  "sepaFeeCents": 150,
  "swiftFeeCents": 4000,
  "kycFeeCents": 500,
  "kybFeeCents": 2500,
  "effectiveFrom": "2024-01-01T00:00:00Z",
  "createdAt": "2024-01-01T00:00:00Z",
  "updatedAt": "2024-01-01T00:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.dakota.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Response

Current pricing config.

monthlyMinimumCents
integer
required

Monthly minimum fee in cents

Required range: x >= 0
Example:

10000

transferFeeBps
number
required

Transfer fee in basis points (0-10000, representing 0% to 100%)

Required range: 0 <= x <= 10000
Example:

25

achFeeCents
integer
required

Per-ACH transaction fee in cents

Required range: x >= 0
Example:

100

wireFeeCents
integer
required

Per-wire transaction fee in cents

Required range: x >= 0
Example:

2500

sepaFeeCents
integer
required

Per-SWIFT transaction fee in cents

Required range: x >= 0
Example:

150

swiftFeeCents
integer
required

Per-Swift-transfer banking fee in USD cents.

Required range: x >= 0
Example:

4000

kycFeeCents
integer
required

Per-individual-application-submission compliance fee in USD cents.

Required range: x >= 0
Example:

500

kybFeeCents
integer
required

Per-business-application-submission compliance fee in USD cents.

Required range: x >= 0
Example:

2500

effectiveFrom
string<date-time>
required

When this pricing takes effect

Example:

"2024-01-01T00:00:00Z"

createdAt
string<date-time>
required

When this pricing configuration was created

Example:

"2024-01-01T00:00:00Z"

updatedAt
string<date-time>
required

When this pricing configuration was last updated

Example:

"2024-01-01T00:00:00Z"