-
Notifications
You must be signed in to change notification settings - Fork 2
/
apiary.apib
105 lines (77 loc) · 3.2 KB
/
apiary.apib
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
FORMAT: 1A
HOST: http://haarp.apiblueprint.org/
# HAARP API (Beta)
Use the HAARP advanced algorithms to order rain and polluted air arround the world.
This is our Beta version. More coming soon to our weather modification facilities near you.
Stay Tuned!
#### What is HAARP
High Frequency Active Auroral Research Program OR HAARP for short, is a secret government project in Alaska that can modify the weather, creating hurricanes and typhoons; can create earthquakes and superheat the atmosphere; or even it can destroy aircraft anywhere in the world; and control the minds of its victims.
Now we have the API to give the full HAARP powers to the general public :) Enjoy!
## Locations [/locations]
### List All Available Locations [GET]
List all the locations we have already deployed our weather modification facilities and algorithms.
+ Response 200 (application/json)
[
{
"locations": "List all locations avaiable for the HAARP intervention",
"published_at": "2018-12-05T10:06:59.620Z",
"choices": [
{
"id":1,
"location": "Prague, Czechia",
"area": 1
}, {
"id":2,
"location": "Sofia, Bulgaria",
"area": 1
}, {
"id":3,
"location": "Kingston, Jamaica",
"area": 3
}, {
"id":4,
"location": "Antananarivo, Madagascar",
"area": 2
}
]
}
]
## Order Polluted Air [/order/pollutedair]
### Request Some Contaminated Air For Your Friendly Neighbours And Yourself. [POST]
You could request some very very polluted air at a location. This is our latest feature and it's still in experimental phase. Please help us test it!
+ Request (application/json)
{
"location":1, // the ID of the desired location
"PM25": 365,
"NO2": 108
"start": "2018-15-05T10:06:59.620Z",
"end": "2018-15-05T10:20:59.620Z",
"wind": 1 // in m/s
}
+ Response 201 (application/json)
+ Headers
Location: /order/pollutedair
+ Body
{
"status": "approved",
"approved_at": "2018-12-05T10:07:33.620Z"
}
## Order Some Rain [/order/rain]
### Request Some HeavyRain As A Surprise To Your Fellow Citizens [POST]
You could request some rain at a location. Be careful! Do not abuse the API. In the BETA version, Snow is not available. Sorry about that.
+ Request (application/json)
{
"location":1, // the ID of the desired location
"rain": "heavy",
"start": "2018-15-05T10:06:59.620Z",
"end": "2018-15-05T10:20:59.620Z",
"hail-duration": 5 // in minutes
}
+ Response 201 (application/json)
+ Headers
Location: /order/rain
+ Body
{
"status": "approved",
"approved_at": "2018-12-05T10:07:33.620Z"
}