-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.html
More file actions
27 lines (23 loc) · 1 KB
/
welcome.html
File metadata and controls
27 lines (23 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Github API for altany</title>
<style>
body { text-align:center; font-family: monospace}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to altany's Github API</h1>
<p>Check the various endpoints below:</p>
<h3><a href="repos">/repos</a>: get a list of all repos</h3>
<h3><a href="/readme/tany4">/readme/:repo</a>: get readme content of given repo</h3>
<h3><a href="/last-commit/tany4">/last-commit/:repo</a>: get last commit info of given repo</h3>
<h3><a href="/languages">/languages</a>: get languages for all altany repos</h3>
<h3><a href="/languages/tany4">/languages/:repo</a>: get language of given repo</h3>
<h3><a href="repos/language/javascript">/repos/language/:language</a>: get all repos with given language</h3>
<p>Head off to <a href="http://tany4.com/work">tany4</a> to see the API in action</p>
</div>
</body>
</html>