-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathstreams.json
94 lines (94 loc) · 2.54 KB
/
streams.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"version": 1,
"request": {
"url": "https://api.twitch.tv/kraken/search/streams",
"method": "GET",
"authorization": {
"type": "Header",
"keyName": "Client-ID",
"extra": {
"Accept": "application/vnd.twitchtv.v5+json"
}
},
"params": {
"query": true,
"offset": false,
"count": false
},
"search": {
"key": "query"
},
"pagination": {
"type": "offset",
"offsetKey": "offset",
"limitKey": "limit",
"maxCount": 100
}
},
"examples": {
"query": "'ninja'"
},
"response": {
"ctype": "application/json",
"tablePath": "$.streams[*]",
"schema": {
"game": {
"target": "$.game",
"type": "string"
},
"viewers": {
"target": "$.viewers",
"type": "int"
},
"video_height": {
"target": "$.video_height",
"type": "int"
},
"average_fps": {
"target": "$.average_fps",
"type": "int"
},
"stream_created_at": {
"target": "$.created_at",
"type": "string"
},
"channel_name": {
"target": "$.channel.display_name",
"type": "string"
},
"status": {
"target": "$.channel.status",
"type": "string"
},
"language": {
"target": "$.channel.broadcaster_language",
"type": "string"
},
"channel_created_at": {
"target": "$.channel.created_at",
"type": "string"
},
"channel_updated_at": {
"target": "$.channel.updated_at",
"type": "string"
},
"channel_followers": {
"target": "$.channel.followers",
"type": "int"
},
"channel_views": {
"target": "$.channel.views",
"type": "int"
},
"logo_url": {
"target": "$.channel.logo",
"type": "string"
},
"video_banner": {
"target": "$.channel.video_banner",
"type": "string"
}
},
"orient": "records"
}
}