Send money

Send Cobru balance to another Cobru user.

This contract comes from legacy Cobru materials. Re-verify the exact request and response payload in sandbox before using it in a production transfer workflow.

Endpoint

POST /send/

Requirements

  • the sender must have verified email and phone
  • the recipient is identified by phone number

Request fields

FieldTypeRequiredNotes
to_userstringyesBest-known recipient identifier. Legacy materials describe it as the recipient phone number.
amountnumberyesAmount to send from the authenticated Cobru user's available balance.

Some older prose references toUser in camelCase. Prefer to_user unless Cobru confirms a second accepted alias.

Example body

{
  "amount": 99000,
  "to_user": "3001234567"
}

Production notes

  • Validate sender KYC and account readiness before exposing this action in UI.
  • The public materials do not confirm whether transfers are synchronous, queued, or reversible.
  • Treat transfer success as untrusted until you can reconcile it through GET /send/ or a downstream ledger.

On this page