-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (120 loc) · 2.74 KB
/
index.html
File metadata and controls
127 lines (120 loc) · 2.74 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<title>sutne - Personal API</title>
</head>
<style>
body {
background-color: #e6e6e6;
color: rgba(0, 0, 0, 0.8);
font-family: sans-serif;
text-align: center;
font-size: 1.5em;
margin: 0 auto;
width: min(90%, 1200px);
}
.content {
text-align: left;
}
h1 {
font-size: 2rem;
}
a {
color: #3684b5;
text-decoration: none;
cursor: pointer;
}
a:hover {
text-decoration: underline;
}
p {
padding: 0;
margin: 0;
}
ul {
padding: 0;
margin: 0;
}
</style>
<body>
<h1>Endpoints</h1>
<div class="content">
<h4>Spotify</h4>
<p>
Now Paying:
<a href="/api/spotify/now-playing">
/api/spotify/now-playing
</a>
</p>
<p>
Recently Played:
<a href="/api/spotify/recently-played">
/api/spotify/recently-played
</a>
</p>
<p>
Top Tracks:
<a href="/api/spotify/top-tracks">
/api/spotify/top-tracks
</a>
</p>
<p>
Top Artists:
<a href="/api/spotify/top-artists">
/api/spotify/top-artists
</a>
</p>
<h4>Github</h4>
<p>Repos:
<a href="/api/github/repos">
/api/github/repos
</a>
</p>
<p>
Languages:
<a href="/api/github/languages">
/api/github/languages
</a>
</p>
<h4>Playstation</h4>
<p>
Profile:
<a href="/api/playstation/profile">
/api/playstation/profile
</a>
</p>
<p>
Recently Played:
<a href="/api/playstation/recently-played">
/api/playstation/recently-played
</a>
</p>
<p>
Trophies:
<a href="/api/playstation/trophies">
/api/playstation/trophies
</a>
</p>
<p>Trophies for "Grand Theft Auto V" on PS4:</p>
<a href="/api/playstation/trophies?id=NPWR06221_00&platform=PS4">
/api/playstation/trophies?id=NPWR06221_00&platform=PS4
</a>
<p>Trophies for "Fall Guys" on PS4+PS5:</p>
<a href="/api/playstation/trophies?id=NPWR25297_00&platform=PS5&id=NPWR19418_00&platform=PS4">
/api/playstation/trophies?id=NPWR25297_00&platform=PS5&id=NPWR19418_00&platform=PS4
</a>
<p>
All trophies across all games:
<a href="/api/playstation/all-trophies">
/api/playstation/all-trophies
</a>
</p>
<h4>Logs</h4>
<p>
<a href="/_logs">
/_logs
</a>
</p>
</div>
</body>
</html>