Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2021-10-29 10:40:25 +00:00
parent 8e9779a8cb
commit 4e64b77e47
127 changed files with 895 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
curl "https://api.m3o.com/v1/geocoding/Lookup" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"address": "10 russell st",
"city": "london",
"country": "uk",
"postcode": "wc2b"
}'

View File

@@ -0,0 +1,7 @@
curl "https://api.m3o.com/v1/geocoding/Reverse" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"latitude": 51.5123064,
"longitude": -0.1216235
}'