-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathmarkets.json
72 lines (72 loc) · 1.98 KB
/
markets.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"version": 1,
"request": {
"url": "https://api.coingecko.com/api/v3/coins/markets",
"method": "GET",
"params": {
"vs_currency": true,
"sparkline": false,
"order": false,
"per_page": false,
"page": false
}
},
"examples": {
"vs_currency": "'usd'"
},
"response": {
"ctype": "application/json",
"tablePath": "$.[*]",
"schema": {
"name": {
"target": "$.name",
"type": "string"
},
"symbol": {
"target": "$.symbol",
"type": "string"
},
"current_price": {
"target": "$.current_price",
"type": "float"
},
"market_cap": {
"target": "$.market_cap",
"type": "float"
},
"market_cap_rank": {
"target": "$.market_cap_rank",
"type": "int"
},
"high_24h": {
"target": "$.high_24h",
"type": "float"
},
"low_24h": {
"target": "$.low_24h",
"type": "float"
},
"price_change_24h": {
"target": "$.price_change_24h",
"type": "float"
},
"price_change_percentage_24h": {
"target": "$.price_change_percentage_24h",
"type": "float"
},
"market_cap_change_24h": {
"target": "$.market_cap_change_24h",
"type": "float"
},
"market_cap_change_percentage_24h": {
"target": "$.market_cap_change_percentage_24h",
"type": "float"
},
"last_updated": {
"target": "$.last_updated",
"type": "string"
}
},
"orient": "records"
}
}