List of cryptocurrencies

https://api.passimpay.io/v2/currencies

This endpoint allows you to retrieve a list of cryptocurrencies, their exchange rates against the US dollar, and the minimum deposit amount required.

Successful response

{
    "result":1,
    "list":[
        {
        "id":10,
        "name":"Bitcoin",
        "currency":"BTC",
        "network":"Bitcoin",
        "rateUsd":"56990.50450929",
        "minDep":null,
        "feeNetwork":null
        },
        ...
    ]
}
Name
Type
Description

result

integer

Request result: 1: success 0: error

list

array

List of cryptocurrencies

Currency List Field Descriptions

Name
Description

id

Currency ID

name

The name of the cryptocurrency (e.g., Bitcoin, Ethereum).

currency

The unique identifier for the cryptocurrency, typically represented in the form of an acronym (e.g., BTC for Bitcoin, ETH for Ethereum).

network

The blockchain network on which the cryptocurrency operates (e.g., Bitcoin network, Ethereum network).

rateUsd

The current exchange rate of the cryptocurrency against the US dollar.

minDep

The minimum deposit amount required to use the specified cryptocurrency.

feeNetwork

Transaction fee charged by the blockchain network (e.g., 1.63). For Bitcoin, fetch fees using the /fees method.

Error Response

Name
Type
Description

result

integer

Request result: 1: success 0: error

message

string

Error description

Last updated