POST
/
payment
/
api
/
v1
/
wallets
/
register
Register Wallet
curl --request POST \
  --url https://api.carbnconnect.com/payment/api/v1/wallets/register \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "user_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "crypto": "USDC",
  "wallet_address": "3BsSGETYNCjfULdgYEBVmzwXgaspS6E5pgncJr3bfBeU",
  "blockchain": "solana",
  "source_currency": "EUR"
}'

Authorizations

x-api-key
string
header
required

API key for authentication. Must be included in the x-api-key header.

Body

application/json
user_id
string<uuid>
required
Example:

"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"

crypto
string
required
Example:

"USDC"

wallet_address
string
required
Example:

"3BsSGETYNCjfULdgYEBVmzwXgaspS6E5pgncJr3bfBeU"

blockchain
string
required
Example:

"solana"

source_currency
string
required
Example:

"EUR"

Response

Wallet registered successfully