You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple API for travel advisories published by the Australian Government on [Smartraveller](https://www.smartraveller.gov.au/).
4
+
5
+
**This is not an official API. Visit the Smartraveller website for latest information**
6
+
7
+
## Locally running
8
+
```
9
+
pip install -r requirements.txt
10
+
python wsgi.py
11
+
```
12
+
13
+
## Deployment
14
+
15
+
Available at https://smartraveller.api.kevle.xyz/
16
+
17
+
OR
18
+
19
+
[](https://vercel.com/import/project?template=https://github.com/kevinle-1/smartraveller-api)
20
+
21
+
## Endpoint(s)
22
+
23
+
### GET /advisory
24
+
25
+
Fetches an advice summary for a country.
26
+
27
+
Responses may be cached for up to 1 hour.
28
+
29
+
#### Query Parameters
30
+
31
+
- country (required)
32
+
- Note: Fuzzy matches for country - E.g. "Spain" or "ES" is accepted. However it is recommend to use Alpha 3 country codes.
33
+
34
+
#### Example Response
35
+
36
+
```
37
+
{
38
+
"advisory": "Exercise normal safety precautions",
39
+
"level": 1,
40
+
"country": "Spain",
41
+
"alpha_2": "ES",
42
+
"official_name": "Kingdom of Spain"
43
+
}
44
+
```
45
+
46
+
## Copyright
47
+
48
+
Smartraveller material accessed is provided under the latest [Creative Commons Attribution licence](creativecommons.org/licenses/by/4.0/).
0 commit comments