Appearance
Funding history
Use this endpoint to review wallet funding entries. Contact Xash support for funding instructions or questions about an entry.
Funding fields
| Field | Type | Notes |
|---|---|---|
uuid | string | Funding identifier. |
amount_units | number | Amount added in UNITS. |
currency | string | Wallet currency. |
bank_name | string|null | Bank name when available. |
bank_reference | string|null | Reference when available. |
verified_at | string|null | Funding date in ISO 8601 format. |
wallet_transaction_uuid | string|null | Related wallet transaction identifier. |
note | string|null | Additional note when available. |
created_at | string|null | ISO 8601 timestamp. |
GET/api/v1/vendor/fundings
Lists funding entries, newest first.
Query parameters
| Parameter | Type | Required | Notes |
|---|---|---|---|
per_page | integer | No | Default 20. |
page | integer | No | Page number, starting at 1. |
Example request
bash
curl "https://taura.xashpay.com/api/v1/vendor/fundings?per_page=20" \
--header "Accept: application/json" \
--header "Authorization: Bearer TOKEN"The response contains a fundings array. Use uuid, bank_reference, and amount_units when asking support about a funding entry. Request another page with ?page=2; an empty array means that page has no records.