⚡⚡⚡ We're LIVE on Product Hunt ⚡⚡⚡
Check out
Arrow

Crypto Price API

Live, readable and historic rate data for 1 000+ cryptocurrencies

Price API icon

Price API

Our API offers up-to-date prices for over 1000 + cryptocurrencies.  

We offer live data 24/7! Due to its accuracy across multiple markets, our API is sure to be an essential tool for any developer or entrepreneur looking to integrate cryptocurrency into the product.

How WatchData Price API worksHow WatchData Price API works
Dynamite icon

Problems

Cross icon

By making a blockchain app, you can't get current and historical prices directly from the blockchain

Cross icon

Not all API services support the tokens I need

Cross icon

Data is very slow to give and can be too expensive

Diamond icon

Solutions

Tick icon

Our API provides both historical and current cryptocurrency rates

Tick icon

Over 1000+ cryptocurrency. You can also get rates to fiat currencies!

Tick icon

With the free rate the information will be delivered in the shortest time.

Example of endpoints for Price API

Get prices of all the tokens at once by calling the All tickers endpoint. On the Current price endpoint, you can get currency rates.

Get
All tickers
Minus
List of tickers for which you can get exchange rates
Post
Current price
Plus
Get the current prices for the requested pair
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
curl --location --request GET
'https://price.api.watchdata.io/price/all_tickers?
api_key=your_api_key' \

--header 'x-api-key: your_api_key'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[   
"IOTA",    
"VGX",
"DODO",    
"1INCHDOWN",    
"BAND",    
"ICX",    
"BKRW",    
"PUNDIX",    
"APPC",
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
curl --location --request POST 'https://price.api.watchdata.io/price/current_price?
api_key=your_api_key'
\
--header 'x-api-key: your_api_key' \
--header 'Content-Type: application/json' \
--data-raw '{
"base_symbol": "BTC",    
"quote_symbol": "ETH"
}'
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{    
"base_symbol": "BTC",    
"quote_symbol": "ETH",    
"price": 14.75035032082012,    
"created_at": "2022-05-16T13:42:20+00:00
}