Currencies

Get list of currencies

get

Get list of currencies

Query parameters
limitinteger · int32 · min: 1 · max: 1000Optional

Limit the number of returned paginations. Defaults to 100.

pageinteger · int32Optional

Specify the page of paginated results.

typestring · enumOptional

Currency type

Possible values:
searchjsonOptional
search[code]stringOptional

Search by currency code using SQL LIKE

search[name]stringOptional

Search by currency name using SQL LIKE

Responses
200
Get list of currencies
application/json
get
GET /api/v2/live/public/currencies HTTP/1.1
Host: www.mameex.com
Accept: */*
200

Get list of currencies

[
  {
    "id": "bch",
    "name": "BitcoinCash",
    "description": "bch",
    "homepage": null,
    "parent_id": null,
    "price": "text",
    "explorer_transaction": "https://testnet.blockchain.info/tx/",
    "explorer_address": "https://testnet.blockchain.info/address/",
    "type": "coin",
    "deposit_enabled": "text",
    "withdrawal_enabled": "text",
    "deposit_fee": "0.0",
    "min_deposit_amount": "0.0",
    "withdraw_fee": "0.0",
    "min_withdraw_amount": "0.0",
    "withdraw_limit_24h": "0.0",
    "withdraw_limit_72h": "0.0",
    "base_factor": 1,
    "precision": 8,
    "position": 8,
    "icon_url": "https://upload.wikimedia.org/wikipedia/commons/0/05/Ethereum_logo_2014.svg",
    "min_confirmations": "text"
  }
]

Last updated