-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathchannels.json
78 lines (78 loc) · 1.98 KB
/
channels.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
{
"version": 1,
"request": {
"url": "https://api.twitch.tv/kraken/search/channels",
"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": "'riot games'"
},
"response": {
"ctype": "application/json",
"tablePath": "$.channels[*]",
"schema": {
"name": {
"target": "$.display_name",
"type": "string"
},
"status": {
"target": "$.status",
"type": "string"
},
"language": {
"target": "$.broadcaster_language",
"type": "string"
},
"created_at": {
"target": "$.created_at",
"type": "string"
},
"updated_at": {
"target": "$.updated_at",
"type": "string"
},
"game": {
"target": "$.game",
"type": "string"
},
"followers": {
"target": "$.followers",
"type": "int"
},
"views": {
"target": "$.views",
"type": "int"
},
"logo_url": {
"target": "$.logo",
"type": "string"
},
"video_banner": {
"target": "$.video_banner",
"type": "string"
}
},
"orient": "records"
}
}