Skip to content

Commit d079723

Browse files
committed
Update README.md
1 parent 02bd0d4 commit d079723

File tree

1 file changed

+41
-2
lines changed

1 file changed

+41
-2
lines changed

README.md

Lines changed: 41 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,41 @@
1-
# crypton-open-api
2-
Crypton open API from exchanges & U Network
1+
2+
![logo](https://raw.githubusercontent.com/Sagleft/crypton-open-api/master/logo.png)
3+
4+
## Application
5+
6+
You can use this solution as a proxy request. You can build your applications and website widgets based on this data.
7+
Trading data is taken from the ZG.com exchange.
8+
9+
## Usage example
10+
11+
```
12+
GET https://crypton.idyll.info/api/price_current
13+
```
14+
response example:
15+
16+
```
17+
{"status":"success","data":{"symbol":"CRPUSDT","price":"0.1196"},"error":""}
18+
```
19+
20+
## help request
21+
22+
```
23+
GET https://crypton.idyll.info/api/help
24+
```
25+
response example:
26+
27+
```
28+
{
29+
"version": "1.0.1",
30+
"date": "2020-09-26",
31+
"commands":
32+
{
33+
"/api/market_depth": "Asks for market depth for a CRP/USDT trading pair",
34+
"/api/recent_trades": "Get data on recent trades",
35+
"/api/chart_data": "Get data for building a trading chart",
36+
"/api/price_change": "Trading volume, current and past rate",
37+
"/api/price_current": "Current rate for a CRP/USDT trading pair",
38+
"/api/order_book": "Volume and prices of buy and sell orders"
39+
}
40+
}
41+
```

0 commit comments

Comments
 (0)