Skip to main content
GET
/
v1
/
accounts
/
{account_id}
/
conversions
curl
curl -X GET "https://api.services.payward.com/v1/accounts/W4BE9868GY65TB6523/conversions" \
  -H "API-Key: $PWS_API_KEY" \
  -H "API-Nonce: $PWS_API_NONCE" \
  -H "API-Sign: $PWS_API_SIGN"
{
  "data": [
    {
      "id": "conv_eur_usdg_001",
      "status": "completed",
      "conversion_rule_id": "rule_eur_usdg_01",
      "from": {
        "account": "W4BE9868GY65TB6523",
        "asset": {
          "symbol": "EUR",
          "name": "Euro",
          "type": "fiat",
          "amount": "1000.00"
        }
      },
      "to": {
        "asset": {
          "symbol": "USDG",
          "name": "Global Dollar",
          "type": "stablecoin",
          "amount": "1078.42"
        },
        "destination": {
          "type": "external_wallet",
          "wallet_id": "wl_client_usdg"
        }
      },
      "fees": {
        "trade": {
          "symbol": "EUR",
          "name": "Euro",
          "type": "fiat",
          "amount": "1.50"
        }
      },
      "chain_references": {
        "withdraw_txid": "5r...solana_tx"
      },
      "created_at": "2026-04-24T18:00:00Z",
      "updated_at": "2026-04-24T18:00:08Z"
    }
  ]
}

Authorizations

api-key
string
header
required
api-sign
string
header
required
api-nonce
string
header
required
api-otp
string
header
required

Path Parameters

account_id
string
required

ID of the account the request applies to. This refers to one of the accounts held by the user the request is acting on behalf of (typically the user's main account, but any of the user's accounts is accepted). Routes the request to that specific account container. Canonical identifier for an account in the Payward public API.

Required string length: 14 - 42

Query Parameters

conversion_rule_id
string

Filter to conversions produced by this rule.

Required string length: 1 - 64
status
enum<string>

Filter to conversions in the given lifecycle state.

Available options:
pending_deposit,
converting,
settling,
completed,
failed,
expired
external_user_id
string

Filter to conversions tagged with this partner-supplied end-customer identifier.

Required string length: 1 - 128
page_size
integer<int32>
default:20

Maximum number of results to return on a single page. Defaults to 20, maximum 100.

Required range: 1 <= x <= 100
page_token
string

Opaque page token returned by a previous response. Omit to start from the beginning.

Required string length: 1 - 64

Response

Successful response

data
object[]
next_page_token
string

Token for the next page of results. Omitted on the last page.