satang-api
  • Introduction
  • Authentication
  • Sign Request Example
    • Javascript
    • Python
    • Golang
  • APIs
    • Public
      • Orders
    • Private
      • Deposits
      • Crypto Deposits
      • User/Wallet
      • Orders
    • Portal (Obsoleted)
  • APIs V3
    • General information
      • Kline Chart Interval
      • Authorization
        • Endpoint Security types
    • Public
      • Exchange Information
      • Depth
      • Kline/Candlestick data
      • Ticker
      • Aggregate trade
    • Private
      • Orders
      • Listen Key
    • Websockets
      • General WSS information
      • User Data Streams
      • Streams
        • Aggregate trade
        • Depth
        • Kline
        • Ticker
  • Satang.pro SDK
Powered by GitBook
On this page

Was this helpful?

  1. APIs
  2. Private

Deposits

List Bank account Deposits

GET https://satangcorp.com/api/bank-account-deposits/

This endpoint allows you to get list deposit with bank account

Query Parameters

Name
Type
Description

limit

number

limit

offset

number

offset

Headers

Name
Type
Description

Signature

string

This field require encrypted API key and API secret

Authentication

string

This field require API key

{
  "count": 10,
  "items": [
    {
      "id": 12345,
      "user_id": 999,
      "currency": "thb",
      "amount": "100.00",
      "fee": 0,
      "status": "success",
      "created_by": "",
      "created_by_ip": "",
      "created_at": "2020-03-04T15:41:11.653003Z",
      "updated_at": "2019-08-02T14:38:48.22269Z",
      "src_account_id": 0,
      "dst_account_id": 0,
      "verification_image_url": "",
      "transfer_at": "2019-08-02T14:38:48.22269Z",
      "reject_reasons": null
      "user": {...},
      "src_bank_account": {
        ...
        "bank": "qrcode",
        "name": "นาย ทดสอบ สตางค์",
        ...
      },
      "dst_bank_account": {...},
      "identity_verification_document": {...},
    },
    ...
  ],
   
}
{
  "code": "INVALID_AUTH_TOKEN",
  "message": "The authentication token is invalid"
}

PreviousPrivateNextCrypto Deposits

Last updated 4 years ago

Was this helpful?