Skip to main content
POST
cURL

Headers

Authorization
string
required

Bearer token. Format: Bearer <api_key>

Idempotency-Key
string

Unique key per logical operation. UUID v4 recommended. Max 255 characters.

Body

application/json

Request to create funding methods for an asset on an account. Provisions the receiving methods (deposit addresses / wire accounts) the asset needs.

accountId
string
required

Account to create the funding methods on. Must belong to the API key's organization.

asset
string
required

Asset code to enable (e.g. USDC, EUR). Provisions every receiving method that serves this asset.

Response

The request has succeeded.

Paginated list envelope. All list endpoints return this shape.

object
enum<string>
required

Object type. Always list for paginated responses.

Available options:
list
data
object[]
required

Array of results.

A funding method, discriminated by type. Use the type field to narrow the details payload:

  • CRYPTO_ADDRESSdetails is CryptoFundingMethodDetails
  • BANKdetails is BankFundingMethodDetails
hasMore
boolean
required

Whether more results are available beyond this page.

nextCursor
string | null
required

Cursor to pass as cursor query parameter for the next page. Null when there are no more results.