Meria API
  • Quick start
  • Masternodes
    • List masternodes
    • Get a masternode
  • Hardwares
    • List machines
    • Get a bob
    • Get an asic
  • Clouds
    • List cloud contracts
    • Get a cloud contract
  • Staking
    • List staking contracts
    • Get a staking contract
  • LENDING
    • List lending contracts
    • Get a lending contract
  • Wallets
    • List wallets
    • Get a wallet
  • Wallet addresses
    • List addresses
    • List addresses for currency
    • Get an address
  • Operations
    • List operations
    • Get an operation
Powered by GitBook
On this page

Was this helpful?

  1. Operations

List operations

Get operations

GET https://api.meria.com/v1/operations

This endpoint allows to get operations (withdrawals, exchanges, credits and debits) sort in descending order of creation date.

Headers

Name
Type
Description

API-KEY

string

Authentification token

{
    "success": true,
    "data": [
        {
            "id": 3010,
            "type": "withdraw",
            "status": "paid",
            "date": 1538914035,
            "sourceCurrencyCode": "ETH",
            "sourceAmount": 3.7,
            "destinationCurrencyCode": "ETH",
            "destinationAmount": 0,
            "destinationAddress": "0x..................",
            "memo": null
        },
        {
            "id": 4027,
            "type": "withdraw",
            "status": "paid",
            "date": 1537115656,
            "sourceCurrencyCode": "ETH",
            "sourceAmount": 0.517,
            "destinationCurrencyCode": "ETH",
            "destinationAmount": 0,
            "destinationAddress": "0x....................",
            "memo": null
        },
        {
            "id": 5181,
            "type": "exchange",
            "status": "paid",
            "date": 1536862720,
            "sourceCurrencyCode": "ZEC",
            "sourceAmount": 0.00370617,
            "destinationCurrencyCode": "ETH",
            "destinationAmount": 0.00233272
        },
        {
            "id": 4522,
            "type": "credit",
            "status": "paid",
            "date": 1532299229,
            "currencyCode": "BCARD",
            "amount": 5,
            "details": "Masternode sale"
        }
    ]
PreviousGet an addressNextGet an operation

Last updated 2 years ago

Was this helpful?