-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 986 Bytes
/
index.html
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
<h1>Intro</h1>
<p>Free REST service that you can use whenever you need some fake data.</p>
<p>It's great for tutorials, faking a server, sharing code examples, ...</p>
<p>See <a href="http://jsonplaceholder.typicode.com/">http://jsonplaceholder.typicode.com/</a> for an online version. See <a href="https://github.com/typicode/json-server">https://github.com/typicode/json-server</a> for more in-depth informaiton.</p>
<h3><strong>Resources</strong></h3>
<table width="179">
<tbody>
<tr>
<td><a href="/people">/people</a></td>
<td>100 items</td>
</tr>
</tbody>
</table>
<h3><strong>Routes</strong></h3>
<table width="283">
<tbody>
<tr>
<td>GET</td>
<td>
<p><a href="/people">/people</a></p>
</td>
</tr>
<tr>
<td>GET</td>
<td><a href="/people/1">/people/1</a></td>
</tr>
<tr>
<td>GET</td>
<td><a href="/people?q=j">/people?q=j</a></td>
</tr>
<tr>
<td>GET</td>
<td><a href="/people?_start=20&_end=30">/people?_start=20&_end=30</a></td>
</tr>
</tbody>
</table>