Skip to main content
POST
/
v1
/
accept
Accept (inbound)
curl --request POST \
  --url https://api.rem.money/v1/accept \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "tempo",
  "currency": "USDC",
  "amount": "<string>",
  "reference": "<string>",
  "counterparty": "<string>"
}
'
{
  "id": "<string>",
  "walletId": "<string>",
  "address": "<string>",
  "amount": "<string>",
  "reference": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
chain
enum<string>
required
Available options:
tempo,
solana,
base
currency
enum<string>
required
Available options:
USDC
amount
string
required

Expected amount, string for precision

reference
string

Your invoice or order ID

counterparty
string

Counterparty ID for KYC/KYT lookup

Response

201 - application/json

Accept request created

id
string
walletId
string
address
string
amount
string
reference
string