Skip to main content
POST
Transfer Token

Headers

X-API-KEY
string
required

API key required for authentication

x-idempotency-key
string

Unique key to prevent duplicate transaction creation

Path Parameters

walletLocator
string
required

A wallet locator can be of the format:

  • <walletAddress>
  • email:<email>:<chainType>[:<walletType>][:alias:<alias>] (walletType defaults to 'smart')
  • userId:<userId>:<chainType>[:<walletType>][:alias:<alias>] (white label user example)
  • phoneNumber:<phoneNumber>:<chainType>[:<walletType>][:alias:<alias>]
  • twitter:<handle>:<chainType>[:<walletType>][:alias:<alias>]
  • x:<handle>:<chainType>[:<walletType>][:alias:<alias>]
  • me:<chainType>[:<walletType>][:alias:<alias>] (Use when calling from the client side with a client API key)
  • chainType[:<walletType>]:alias:<alias>
tokenLocator
string
required

A token locator that supports native tokens, fungible tokens, and NFTs across different chains. It can be of the format:

  • chain:address[:tokenId]
  • chain:currency
  • chain:address

Body

application/json

Base fields for all token deposits

amount
string
required

Amount of tokens to transfer (in decimal value)

Pattern: ^\d+(?:\.\d*)?$
Example:

"42.69"

recipient
string
required
Example:

"CROSSMINT"

fees
object

Optional per-transaction fee configuration override. When omitted, the project default is used.

memo
object

Memo for the transaction. Only supported for Stellar

Example:
signer
string

Optional signer locator. Defaults to admin signer

Example:

"external-wallet:0xdeadbeef"

transactionType
default:direct

Specifies the type of transaction. Choose 'direct' for standard interactions or 'regulated-transfer' for operations requiring compliance checks.

Available options:
direct

Response

201 - application/json

The transaction has been successfully created.

Complete transaction response including status, signing requirements, and wallet type specific data

chainType
enum<string>
required

The blockchain type of the wallet

Available options:
aptos,
evm,
solana,
stellar,
sui
createdAt
required

ISO timestamp when the transaction was created

id
string
required

Unique identifier for the transaction

onChain
Solana custodial wallet transaction data · object
required

Solana custodial wallet transaction data including input parameters and chain specific details

params
object
required
status
enum<string>
required

Current status of the transaction

Available options:
awaiting-approval,
failed,
pending,
success
walletType
enum<string>
required

The wallet type (smart or mpc)

Available options:
mpc,
smart
approvals
object

Complete approval data including requirements, pending and submitted signatures

completedAt

ISO timestamp when the transaction reached finality

error
object

Error message if the transaction fails after submission

fees
object

Transaction fee information including actual transaction fees, billed amounts, and billing status

sendParams
object