• APIs and Libraries
    APIs and Libraries
  • Connect WX Network wallet
    Connect WX Network wallet
  • CCXT
    CCXT
  • Fees
    Fees
  • Matcher
    • WX Network Protocol
      WX Network Protocol
    • Matcher Fee
      Matcher Fee
    • Install Matcher on Ubuntu From Deb-package
      Install Matcher on Ubuntu From Deb-package
    • Matcher Settings
      Matcher Settings
    • Matcher API
      • Order Validation
        Order Validation
      • Exchange Transation Validation
        Exchange Transation Validation
      Matcher API
    • Matcher WebSocket API
      • Errors and Debugging
        Errors and Debugging
      • Common Streams
        Common Streams
      Matcher WebSocket API
    Matcher
  • Gateway API
    • Access Token
      • Get Access Token in WX Network App
        Get Access Token in WX Network App
      • POST /v1/oauth2/token
        POST /v1/oauth2/token
      Access Token
    • Deposit
      • [Deprecated] GET /v1/deposit/addresses/{currency}
        [Deprecated] GET /v1/deposit/addresses/{currency}
      • GET /v1/deposit/addresses/{currency}/{platform}
        GET /v1/deposit/addresses/{currency}/{platform}
      • GET /v1/deposit/currencies
        GET /v1/deposit/currencies
      • [Deprecated] GET /v1/deposit/currencies/{currency}
        [Deprecated] GET /v1/deposit/currencies/{currency}
      • GET /v1/deposit/currencies/{currency}/{platform}
        GET /v1/deposit/currencies/{currency}/{platform}
      • Terms of Deposit
        Terms of Deposit
      Deposit
    • Withdraw
      • [Deprecated] GET /v1/withdraw/addresses/{currency}/{address}
        [Deprecated] GET /v1/withdraw/addresses/{currency}/{address}
      • GET /v1/withdraw/addresses/{currency}/{address}/{platform}
        GET /v1/withdraw/addresses/{currency}/{address}/{platform}
      • GET /v1/withdraw/currencies
        GET /v1/withdraw/currencies
      • [Deprecated] GET /v1/withdraw/currencies/{currency}
        [Deprecated] GET /v1/withdraw/currencies/{currency}
      • GET /v1/withdraw/currencies/{currency}/{platform}
        GET /v1/withdraw/currencies/{currency}/{platform}
      • Terms of Withdrawal
        Terms of Withdrawal
      Withdraw
    • Movements History
      Movements History
    • Platforms List
      Platforms List
    • Error Codes
      Error Codes
    Gateway API
  • Get Trades
    Get Trades
  • Staking Annual Percentage Yield API
    Staking Annual Percentage Yield API
  • Payment API
    Payment API
  • Web Auth API
    Web Auth API
  • WX Token Protocol
    WX Token Protocol
  • Glossary
    Glossary
      • English
      • Русский
      On this page
        • GET /v1/movements
        • GET /v1/movements/{id}

          # Movements History

          GET /v1/movements method allows to retrieve paginated list of all the deposit and withdrawal records, sorted by created_at in descending order.

          You can also specify a movement ID in the GET /v1/movements/{id} request to retrieve a particular gateway movement record.

          # GET /v1/movements

          This method requires access token. Read more about access token.

          GET /v1/movements
          Authorization: Bearer {access_token}
          

          Request parameters (optional):

          Parameter Data type Default Value Description
          limit uint16 100 [1, 100] valid interval. Sets max number of records in the response
          after string - value from the page_info.last_cursor field from the previous page response

          Request example:

          GET /v1/movements?limit=20&after=0q9nufaownuf09msufi09asmpofikap
          

          Successful response:

          Code : 200 OK
          

          Response format (GET /v1/movements):

          {
            type: "list",
            page_info: {
              has_next_page: boolean,
              last_cursor: string,
            },
            items: [
              {
                type: "gateway_movement",
                id: string,
                direction: "deposit" | "withdrawal",
                status: "in_progress" | "pending_approval" | "confirmed" | "rejected",
                source_platform_id: string,
                destination_platform_id: string,
                currency_id: string,
                amount: number,   // float64
                fee: number,      // float64
                created_at: Date, // ISO8601
                updated_at: Date, // ISO8601
                recipient_address: string,
                transactions: [
                  {
                    transaction_id: string,
                    platform_id: string,
                  }
                ]
              }
            ],
          }
          

          Response example (GET /v1/movements):

          {
            "type": "list",
            "page_info": {
              "has_next_page": false,
              "last_cursor": "QXh1dVNHYVdnSGMxSHJCclpkWENXVWJ3ZnZrQmRvdVBkVUtmRFdOYUdOS1c="
            },
            "items": [
              {
                "type": "gateway_movement",
                "id": "AxuuSGaWgHc1HrBrZdXCWUbwfvkBdouPdUKfDWNaGNKW",
                "direction": "deposit",
                "status": "in_progress",
                "source_platform_id": "BTC",
                "destination_platform_id": "WAVES",
                "currency_id": "BTC",
                "amount": 0.0128,
                "fee": 0.00001,
                "created_at": "2020-11-03T08:34:02.630Z",
                "updated_at": "2020-11-03T08:34:02.630Z",
                "recipient_address": "3PNMvAqJWYPkwf8fhz46rZiLEWpTmuhD3Uh",
                "transactions": [
                  {
                    "transaction_id": "1577ce5161a4234fa19752855ab747238fd0ad37a56ec638ab003029d10c9897",
                    "platform_id": "BTC"
                  },
                  {
                    "transaction_id": "AxuuSGaWgHc1HrBrZdXCWUbwfvkBdouPdUKfDWNaGNKW",
                    "platform_id": "WAVES"
                  }
                ]
              }
            ]
          }
          

          # GET /v1/movements/{id}

          This method retrieves the specified gateway movement record by ID.

          This method requires access token. Read more about access token.

          GET /v1/movements/{id}
          Authorization: Bearer {access_token}
          

          Successful response:

          Code : 200 OK
          

          Response format (GET /v1/movements/{id}):

          {
            type: "gateway_movement",
            id: string,
            direction: "deposit" | "withdrawal",
            status: "in_progress" | "pending_approval" | "confirmed" | "rejected",
            source_platform_id: string,
            destination_platform_id: string,
            currency_id: string,
            amount: number,   // float64
            fee: number,      // float64
            created_at: Date, // ISO8601
            updated_at: Date, // ISO8601
            recipient_address: string,
            transactions: [
              {
                transaction_id: string,
                platform_id: string,
              }
            ]
          }
          

          Response example (GET /v1/movements/AxuuSGaWgHc1HrBrZdXCWUbwfvkBdouPdUKfDWNaGNKW):

          {
            "type": "gateway_movement",
            "id": "AxuuSGaWgHc1HrBrZdXCWUbwfvkBdouPdUKfDWNaGNKW",
            "direction": "deposit",
            "status": "pending_approval",
            "source_platform_id": "BTC",
            "destination_platform_id": "WAVES",
            "currency_id": "BTC",
            "amount": 0.0128,
            "fee": 0.00001,
            "created_at": "2020-11-03T08:34:02.630Z",
            "updated_at": "2020-11-03T08:34:02.630Z",
            "recipient_address": "3PNMvAqJWYPkwf8fhz46rZiLEWpTmuhD3Uh",
            "transactions": [
              {
                "transaction_id": "1577ce5161a4234fa19752855ab747238fd0ad37a56ec638ab003029d10c9897",
                "platform_id": "BTC"
              },
              {
                "transaction_id": "AxuuSGaWgHc1HrBrZdXCWUbwfvkBdouPdUKfDWNaGNKW",
                "platform_id": "WAVES"
              }
            ]
          }
          
          Terms of Withdrawal
          Platforms List
          Terms of Withdrawal
          Platforms List