List transfers

Retrieve transfers sent by the authenticated Cobru user.

This endpoint is documented from legacy Cobru materials, but filters and pagination still need fresh verification from a live Cobru environment.

Endpoint

GET https://dev.cobru.co/send/
Content-Type: application/json
Authorization: Bearer <access_token>

You only need the user's authorization token to retrieve this data.

Response

The endpoint returns a dictionary of lists with money transfers sent or received by the user.

FieldTypeDescription
from_userstringUsername sending the money.
to_userstringUsername receiving the money.
amountnumberAmount sent.
datestringMoment when the transfer was created.

How to use the listing

  • reconcile outbound transfers in an operations panel
  • inspect transfers received by the user
  • confirm whether a send request has already been registered
  • build customer-support tooling around wallet-to-wallet movement

What still needs confirmation

  • pagination fields
  • available filters
  • whether the list includes transfer status or only the core ledger record

On this page