Get List of Offramp Transactions
Overview
The Get List of Crypto Sell Orders API retrieves a list of all crypto-to-fiat sell transactions for a user. It provides merchants with a summary of past sell orders, including their status and details, to help monitor and manage user activity.
Endpoint
URL: https://mudrex.com/api/v2/wallet/transactions?transaction_type=SELL
Method: GET
Request Headers
Header | Description |
---|---|
X-Timestamp | UNIX timestamp for the request. |
X-Client-Id | Unique identifier for the merchant. |
X-Request-Id | A unique identifier for the request (optional but recommended). |
X-Secret-Key | API secret key for authenticating the request. |
X-User-Id | The unique ID of the user making the request. |
Sample Request
curl --location 'https://mudrex.com/api/v2/wallet/transactions?transaction_type=SELL' \
--header 'X-Timestamp: 1732265171' \
--header 'X-Client-Id: CLIENT_ID_HERE' \
--header 'X-Request-Id: CC' \
--header 'X-Secret-Key: SECRET_KEY_HERE' \
--header 'X-User-Id: USER_ID_HERE'
Sample Response
Need this
Key Response Fields
Use Cases
-
Transaction Monitoring:
- View all sell orders for a user to monitor activity and status.
-
User Support:
- Fetch transaction details to address user queries or issues.
Get more information here
Updated 10 days ago