-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathexchanges.json
54 lines (54 loc) · 1.43 KB
/
exchanges.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"version": 1,
"request": {
"url": "https://api.coingecko.com/api/v3/exchanges",
"method": "GET",
"params": {
"per_page": false,
"page": false
}
},
"response": {
"ctype": "application/json",
"tablePath": "$.[*]",
"schema": {
"id": {
"target": "$.id",
"type": "string"
},
"name": {
"target": "$.name",
"type": "string"
},
"year_established": {
"target": "$.year_established",
"type": "string"
},
"country": {
"target": "$.country",
"type": "string"
},
"url": {
"target": "$.url",
"type": "string"
},
"trust_score": {
"target": "$.trust_score",
"type": "int"
},
"trust_score_rank": {
"target": "$.trust_score_rank",
"type": "int"
},
"trade_volume_24h_btc": {
"target": "$.trade_volume_24h_btc",
"type": "float"
},
"trade_volume_24h_btc_normalized": {
"target": "$.trade_volume_24h_btc_normalized",
"type": "float"
}
},
"orient": "records"
}
}