Skip to main content
GET
/
payment
/
api
/
v1
/
offramp-audit
/
{user_id}
Get Offramp Audit
curl --request GET \
  --url https://api.carbnconnect.com/payment/api/v1/offramp-audit/{user_id} \
  --header 'x-api-key: <api-key>'
{
  "user_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "transactions": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "crypto_currency": "USDC",
      "crypto_amount": 50.25,
      "fiat_currency": "EUR",
      "fiat_amount": 48.75,
      "exchange_rate": 0.97,
      "blockchain": "solana",
      "status": "pending",
      "destination_account": {
        "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "account_type": "bank_account",
        "masked_details": "****-****-****-1234 or DE89****0000",
        "nickname": "My Account Name"
      },
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 0,
    "size": 5,
    "total_pages": 123,
    "total_elements": 123
  }
}

Authorizations

x-api-key
string
header
required

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

Path Parameters

user_id
string<uuid>
required

The unique identifier of the user

Query Parameters

page
integer
default:0

Page number for pagination

size
integer
default:5

Number of items per page

Response

Offramp audit information retrieved successfully

user_id
string<uuid>

The unique identifier of the user

Example:

"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"

transactions
object[]
pagination
object