Crypto prices API

Crypto Prices API

The Crypto Price API provides current and historical data on several hundred cryptocurrencies. Users can access information on the current price, as well as percentage price changes over the past 1 hour, 24 hours, or the last week. Additionally, they can obtain data on trading volume and total market capitalization.

If you want to directly exchange one crypto coin for another, then take a look at the Crypto Swap API, which displays the exchange rates for swapping hundreds of coins between each other. Read more >>

Crypto Prices API Documentation

The Crypto Prices API is available in a JSON format. Tradefeeds API support all API programming languages, which satifies the need of all our customers. Check below the other formats through which you obtain data on crypto prices data. Pay attention to the key filtering parameters as well as input and output response examples.

ready to start?

Get our API key in an instant! 

SDKs and Devkits
Get crypto prices API in any programming language: Javascript, JQuery, VueJS, Angular, JAVA, PHP, NodeJS, Python, Go, Ruby, C#, R, Strest, Rust, Swift and Scala
REST JSON and XML
Use the key filtering parameters such as cryptocurrency ID or fiat name to get data. Obtain the response output in a JSON or XML format
Excel and CSV Files
In case you do not want cryptocurrency price data retrieved in programming languages, then you can request to have it in either excel or csv files. All you need to do is to simply inform us.

API Request

ObjectsDescription
coinIDTo specify which cryptocurrency (or cryptocurrencies) the user is interested in. like “BTC” for Bitcoin
fiatTo specify in which fiat currency the prices should be returned (e.g., “USD”, “EUR”, “GBP”)
sortTo sort the results by a specific attribute, like “marketCap”, “volume”, “percentageChange”, etc.
limitTo limit the number of returned results. For instance, a user might only want the top 10 cryptocurrencies by market cap.

API Output example

				
					[
    {
        "identifier": "bitcoin (BTC)",
        "name": "Bitcoin",
        "symbol": "BTC",,
        "price": "$34,259.14",
        "change_1h": "0.8%",
        "change_24h": "-0.1%",
        "change_7d": "20.5%",
        "volume_24h": "$23,964,863,096",
        "market_cap": "$668,893,454,933"
    }
    ]