Skip to main content
GET
/
v1
/
funds
/
transactions
curl
curl -X GET "https://api.services.payward.com/v1/funds/transactions" \
  -H "API-Key: $PWS_API_KEY" \
  -H "API-Nonce: $PWS_API_NONCE" \
  -H "API-Sign: $PWS_API_SIGN"
{
  "data": [
    {
      "type": "deposit",
      "timestamp": "2026-04-15T09:12:48.000Z",
      "asset": {
        "symbol": "BTC",
        "type": "crypto"
      },
      "amount": "0.50000000",
      "status": "settled",
      "ref_id": "fxn_01J0M7C0Z9F8YX3GQH8E"
    },
    {
      "type": "withdrawal",
      "timestamp": "2026-04-14T17:35:02.000Z",
      "asset": {
        "symbol": "USDC",
        "type": "stablecoin"
      },
      "amount": "1500.00",
      "status": "pending",
      "ref_id": "fxn_01J0M7C0Z9F8YX3GQH8F"
    },
    {
      "type": "deposit",
      "timestamp": "2026-04-12T22:01:11.000Z",
      "asset": {
        "symbol": "USD",
        "type": "fiat"
      },
      "amount": "5000.00",
      "status": "success",
      "ref_id": "fxn_01J0M7C0Z9F8YX3GQH8G"
    }
  ],
  "next_page_token": "cursor_eyJrIjoxfQ"
}

Authorizations

API-Key
string
header
required

Your public API key. Identifies the partner making the request.

API-Nonce
string
header
required

Monotonically increasing nonce included in the request signature.

API-Sign
string
header
required

HMAC signature over the request, computed with your private key.

Query Parameters

type
enum<string>
required

Request funding transactions of the specified type

Available options:
withdrawal,
deposit
cursor
string | null

Pagination cursor for fetching the next set of results

page_size
integer<uint32>
default:25

Number of transactions to return per page. Default is 25 if not specified.

Required range: 1 <= x <= 500

Response

Response

data
object[]
required

List of funding transactions

next_page_token
string

Opaque cursor for the next page of results. Absent when there are no more pages.

Required string length: 1 - 256