Skip to main content
POST
/
transfers
Create Transfer
curl --request POST \
  --url https://api.caminotreasury.com/v1/transfers \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "amount": "<string>",
  "source": {
    "currency": "usd",
    "payment_rail": "ach_push",
    "from_address": "<string>",
    "external_account_id": "<string>"
  },
  "destination": {
    "currency": "usd",
    "payment_rail": "ach",
    "external_account_id": "<string>",
    "to_address": "<string>"
  },
  "client_reference_id": "<string>",
  "developer_fee": "<string>",
  "dry_run": true
}
'
{}

Authorizations

x-api-key
string
header
required

API key for authentication. Pass your key in the x-api-key header.

Body

application/json

Create a transfer. Supports off-ramp (USDC/ethereum → USD/ach) and on-ramp (USD/ach_push → USDC/ethereum).

amount
string
required
source
object
required
destination
object
required
client_reference_id
string
Maximum string length: 256
developer_fee
string
dry_run
boolean

Response

Transfer created

The response is of type object.