Skip to main content
GET
/
clients
/
{id}
/
pricing
Get client pricing configuration
curl --request GET \
  --url https://api.platform.dakota.xyz/clients/{id}/pricing \
  --header 'x-api-key: <api-key>'
{
  "monthlyMinimumCents": 10000,
  "transferFeeBps": 25,
  "achFeeCents": 100,
  "wireFeeCents": 2500,
  "sepaFeeCents": 150,
  "effectiveFrom": "2024-01-01T00:00:00Z",
  "createdAt": "2024-01-01T00:00:00Z",
  "updatedAt": "2024-01-01T00:00:00Z"
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

Response

Client pricing configuration

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-SEPA transaction fee in cents

Required range: x >= 0
Example:

150

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"