-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (51 loc) · 1.3 KB
/
index.html
File metadata and controls
55 lines (51 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API Endpoints</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f5f5f5;
color: #333;
padding: 40px;
max-width: 900px;
margin: auto;
}
h1 {
text-align: center;
margin-bottom: 10px;
}
p {
text-align: center;
opacity: 0.8;
}
pre {
background: #1e1e1e;
color: #dcdcdc;
padding: 20px;
border-radius: 8px;
overflow-x: auto;
font-size: 14px;
}
</style>
</head>
<body>
<h1>API Endpoint Directory</h1>
<p>This page is intended for programmatic access only.
If you're viewing this in a browser, you're probably in the wrong place.</p>
<h2>Available API Endpoints</h2>
<pre>{
"api_version": "1.0",
"endpoints": [
{
"path": "/release-manifest.json",
"method": "GET",
"description": "Returns latest app version information and update metadata."
},
]
}</pre>
</body>
</html>