tanX Docupaper
AboutTrade
  • ABOUT
    • 📒tanX Docupaper
  • TECH
    • 👩‍💻Tech Docupaper
      • 🏨High level architecture
      • 🤔Starkware logic
      • 🌊Transactional flow
        • Off-chain accounts
        • The deposit flow
        • The withdrawal flow
        • The trade flow
        • The transfer flow
        • Full withdrawal
    • 🔌API Documentation
      • 😋Getting started
        • Test connectivity
      • 📈Market
        • 24hr Tickers Price
        • K-line/Candlestick data
        • Orderbook
        • Recent trades
      • ↔️Trading
        • Create order
        • Get order
        • List orders
        • Cancel order
        • Bulk Cancel
        • List trades
      • 🔐Account
        • Generating L2 Key Pairs
        • Login
        • Deposit
        • Withdrawal
        • Profile Information
        • Balance details
        • Profit and loss details
      • 🌏Web-socket stream
        • 🗝️Private web-socket connection
        • 👥Public websocket connection
      • ✨Internal Transfer
        • Create Internal Transfer
        • Get Internal Transfer
        • Check User Existence
        • List Internal Transfers
      • 🧪SDK Reference
        • NodeJS SDK
        • Python SDK
  • LEGAL
    • ‼️tanX Disclaimer
Powered by GitBook
On this page

Was this helpful?

  1. TECH
  2. API Documentation
  3. Internal Transfer

List Internal Transfers

Get all internal transfers of a user. (Private 🔒)

PreviousCheck User ExistenceNextSDK Reference

Last updated 1 year ago

Was this helpful?

Retrieve details of all transfers for a user using this endpoint. Please note that this is a Private 🔒 route which means it needs to be authorized by the account initiating this request.

Note: You will need to include the JWT Auth token to request headers to access this endpoint. To get the JWT Auth Token, refer the section of the documentation.

Endpoint

GET /sapi/v1/internal_transfers/v2/

Request Headers

{
  "Authorization": "JWT ***"
}

Query params

Field
Type
Mandatory
Description

limit

INTEGER

NO

default 50

offset

INTEGER

NO

Example

{baseurl}/sapi/v1/internal_transfers?limit=20&offset=1

Response

{
    "status": "success",
    "message": "Fetched internal transfers successfully",
    "payload": {
        "internal_transfers": [
            {
                "client_reference_id": "18713401936769560",
                "amount": "10",
                "currency": "usdc",
                "from_address": "0xF",
                "destination_address": "0x4",
                "status": "success",
                "created_at": "2023-07-10T11:36:57.820203Z",
                "updated_at": "2023-07-10T11:51:54.937498Z"
            },
            {
                "client_reference_id": "3904693199068586",
                "amount": "1",
                "currency": "usdc",
                "from_address": "0xF",
                "destination_address": "0x5",
                "status": "pending",
                "created_at": "2023-07-10T07:32:32.933317Z",
                "updated_at": "2023-07-10T07:32:32.933340Z"
            }
	],
    "total_count": 2,
    "limit": 20,
    "offset": 1
  }
}
🔌
✨
login