Deposits

GET /deposits

Retrieve your deposits. Requires a valid API key sent with the x-api-key header.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • code integer

      Response code

    • msg string

      Diagnostic message

    • result array[object]

      Deposit

      Hide result attributes Show result attributes
      • address string

        Address of deposit

      • Your unique Account ID

      • asset string

        Asset of deposit

      • time number

        Time of deposit

      • qty number

        Quantity of deposit

      • net number

        Net Quantity of deposit. Net Quantity = Quantity - Fee.

      • status string

        Status of deposit. Can be PENDING or COMPLETED.

      • id string

        Unique identifier of deposit.

      • qty_usd number

        USD quantity of deposit, at time of deposit.

      • Blockchain transaction associated with the deposit

        Hide transaction attributes Show transaction attributes
        • hash string

          Transaction hash

        • from string

          Sender of transaction

  • 503

    Error

    Hide response attributes Show response attributes object
GET /deposits
curl \
 -X GET https://api.everstrike.io/deposits \
 -H "x-api-key: $API_KEY"
Response examples (200)
{
  "code": 200,
  "msg": "string",
  "result": [
    {
      "address": "0x90cfa791e9c5d1d28e67f15c2b5b2eed680b9677",
      "customer_id": "5f9ca5f0380e11e9bf5191a076098e19",
      "asset": "ETH",
      "time": 1551120600023,
      "qty": 0.1,
      "net": 0.1,
      "transaction": {
        "hash": "0x4bab116ba887eeb9192a1b282766e58dfba65abf1d79548aad0636b89a21a7c3",
        "from": "0x9e80FA64F59CC0Ac3EEdaB8A698DcBc8435091A9"
      },
      "status": "COMPLETED",
      "id": "ETH0x4bab116ba887eeb9192a1b282766e58dfba65abf1d79548aad0636b89a21a7c3",
      "qty_usd": 14.218710925,
      "net_usd": 14.0765238158
    }
  ]
}
Response examples (503)
{
  "code": 503,
  "msg": "Invalid request",
  "result": {}
}