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

Crypto Deposits

NOTE: This endpoint requires API key and request signing, for more information please refer to Authentication section.

List Crypto Deposit

GET https://satangcorp.com/api/crypto-deposits/

get list crypto deposit

Query Parameters

Name
Type
Description

limit

number

limit

offset

number

offset

Headers

Name
Type
Description

Authentication

string

This field require API key

Signature

string

This field require encrypt of API key and API secret

{
  "count": 10,
  "items": [
    {
      "id": 12345,
      "user_id": 999,
      "address": "1CEBb3gjT7WhdrBs3r1Tcutr4rzFqnny9X",
      "amount": "0.00001",
      "currency": "btc",
      "tag": "",
      "fee": 0,
      "tx_id": "eeaab6ad574e389a0867236c60ca83b5a0fefebd0803a5cfb74b0218003880c9",
      "status": "success",
      "created_by": "",
      "created_by_ip": "",
      "created_at": "2020-03-04T15:41:11.653003Z",
      "updated_at": "2019-08-02T14:38:48.22269Z",
      "transfer_at": "2019-08-02T14:38:48.22269Z",
      "user": {...},
      "identity_verification_document": {...},
    },
    ...
  ],
}
{
  "code": "INVALID_AUTH_TOKEN",
  "message": "The authentication token is invalid"
}

PreviousDepositsNextUser/Wallet

Last updated 4 years ago

Was this helpful?