-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
63 lines (63 loc) · 1.88 KB
/
home.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Building Permissions API</title>
<style>
body {
background-image: url(https://ichef.bbci.co.uk/images/ic/1200x675/p08rkqxl.jpg);
}
h1 {
color: white;
}
p {
color: black;
}
a {
color: darkblue;
}
mark {
background-color: lightblue;
color: black;
}
</style>
</head>
<body>
<h1><mark>
Welcome to the Building Permissions API
</mark></h1>
<p><mark>
This API allows you to retrieve information about number of building permissions for given unit id
divided by category, type of building permission compared to last month, last two months,
last three months from given date.
</mark></p>
<p><mark>
Available units types: voivodeships, countys, cadastral units.
</mark></p>
<p><mark>
Information based on official website of GUNB (General Office of Building Supervision in Poland):
<a href="https://wyszukiwarka.gunb.gov.pl/">GUNB SITE</a>.
</mark></p>
<h2><mark>
API Endpoints
</mark></h2>
<ul>
<li><mark><a href="/info">/info</a> - <i>to get all available unit id</i></mark></li>
<li><mark>/aggregates/{unit_id}?date={YYYY-MM} - <i>to get detailed info about given permissions by unit, status for given
month, if month not given API will return data for actual month.</i></mark></li>
</ul>
<h2><mark>
API Documentation
</mark></h2>
<p><mark>
For detailed documentation on how to use this API, please see <a href="/docs">our API documentation</a>.
</mark></p>
<h2><mark>
API Support
</mark></h2>
<p><mark>
If you have any questions or need assistance using our API, please contact us at:
<a href="#">adamstolarczyk1994@gmail.com</a>.
</mark></p>
</body>
</html>