How to get data from crypto API?

Xiaoqianchen
2 min readDec 2, 2022

--

This article will introduce a crypto API which is Block.cc is a professional cryptocurrency information service platform that provides cryptocurrency quotes, data, information, and high-performance RESTful JSON endpoints designed to meet the mission-critical demands of application developers, blockchain enthusiasts, cryptocurrency investors, and enterprise business platforms. Included 500+ exchanges, 10,000+ currencies, 28,000+ trading pairs, and 1000+ business users. Block.cc provides three types of interfaces, including metadata, market data, and news data. Today we’ll talk about the metadata interface for block.cc.

Meta Data

Metadata is basic data and is generally used as a parameter for requesting market data.

How to get data from Block.cc API

(1)Get a list of all supported markets

Request URL

GET https://data.block.cc/api/v3/markets

GET https://data.block.cc/api/v3/markets/{slug}

Example

Request Parameter

Response Parameter

(2)Get a list of all supported currencies

Request URL

GET https://data.block.cc/api/v3/symbols

GET https://data.block.cc/api/v3/symbols/{slug}

Example

Request Parameter

Response Parameter

Get more information, please browse the office website

https://pro.block.cc/

--

--