forked from daffainfo/all-about-apikey
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Muhammad Daffa
committed
Aug 18, 2022
1 parent
9ee885c
commit 2eba183
Showing
15 changed files
with
715 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# [aviationstack](https://aviationstack.com/documentation) | ||
|
||
## __Description__ | ||
Real-time Flight Status & Global Aviation Data API | ||
|
||
## __Example Request__ | ||
* Curl | ||
``` | ||
curl "https://api.aviationstack.com/v1/flights?access_key={{token}}" | ||
``` | ||
|
||
* Raw | ||
``` | ||
GET /v1/flights?access_key={{token}} HTTP/1.1 | ||
Host: api.aviationstack.com | ||
... | ||
``` | ||
|
||
## __Response__ | ||
* Success | ||
``` | ||
{ | ||
"pagination": { | ||
"limit": 100, | ||
"offset": 0, | ||
"count": 100, | ||
"total": 1669022 | ||
}, | ||
"data": [ | ||
{ | ||
"flight_date": "2019-12-12", | ||
"flight_status": "active", | ||
"departure": { | ||
"airport": "San Francisco International", | ||
"timezone": "America/Los_Angeles", | ||
"iata": "SFO", | ||
"icao": "KSFO", | ||
"terminal": "2", | ||
"gate": "D11", | ||
... | ||
} | ||
} | ||
] | ||
} | ||
``` | ||
* Error | ||
``` | ||
{ | ||
"error": { | ||
"code": "invalid_access_key", | ||
"message": "You have not supplied a valid API Access Key." | ||
} | ||
} | ||
``` | ||
## __Regex__ | ||
``` | ||
[a-z0-9]{32} | ||
``` | ||
|
||
## __Example API key__ | ||
``` | ||
tue3sv9hzsey1me4l7fwq3t46u5k8wag | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# [ipapi](https://ipapi.com/documentation) | ||
|
||
## __Description__ | ||
Real-time Geolocation & Reverse IP Lookup REST API | ||
|
||
## __Example Request__ | ||
* Curl | ||
``` | ||
curl "http://api.ipapi.com/api/161.185.160.93?access_key={{token}}" | ||
``` | ||
|
||
* Raw | ||
``` | ||
GET /api/161.185.160.93?access_key={{token}} HTTP/1.1 | ||
Host: api.ipapi.com | ||
... | ||
``` | ||
|
||
## __Response__ | ||
* Success | ||
``` | ||
{ | ||
"ip": "161.185.160.93", | ||
"hostname": "161.185.160.93", | ||
"type": "ipv4", | ||
"continent_code": "NA", | ||
"continent_name": "North America", | ||
"country_code": "US", | ||
"country_name": "United States", | ||
"region_code": "NY", | ||
"region_name": "New York", | ||
"city": "Brooklyn", | ||
"zip": "11238", | ||
"latitude": 40.676, | ||
"longitude": -73.9629, | ||
"location": { | ||
... | ||
} | ||
} | ||
``` | ||
* Error | ||
``` | ||
{ | ||
"success":false, | ||
"error":{ | ||
"code":101, | ||
"type":"invalid_access_key", | ||
"info":"You have not supplied a valid API Access Key. [Technical Support: [email protected]]" | ||
} | ||
} | ||
``` | ||
## __Regex__ | ||
``` | ||
[a-z0-9]{32} | ||
``` | ||
|
||
## __Example API key__ | ||
``` | ||
tue3sv9hzsey1me4l7fwq3t46u5k8wag | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# [ipstack](https://ipstack.com/documentation) | ||
|
||
## __Description__ | ||
Locate and identify website visitors by IP address | ||
|
||
## __Example Request__ | ||
* Curl | ||
``` | ||
curl "https://api.ipstack.com/134.201.250.155?access_key={{token}}" | ||
``` | ||
|
||
* Raw | ||
``` | ||
GET /134.201.250.155?access_key={{token}} HTTP/1.1 | ||
Host: api.ipstack.com | ||
... | ||
``` | ||
|
||
## __Response__ | ||
* Success | ||
``` | ||
{ | ||
"ip": "134.201.250.155", | ||
"hostname": "134.201.250.155", | ||
"type": "ipv4", | ||
"continent_code": "NA", | ||
"continent_name": "North America", | ||
"country_code": "US", | ||
"country_name": "United States", | ||
"region_code": "CA", | ||
... | ||
} | ||
``` | ||
* Error | ||
``` | ||
{ | ||
"success": false, | ||
"error": { | ||
"code": 101, | ||
"type": "invalid_access_key", | ||
"info": "You have not supplied a valid API Access Key. [Technical Support: [email protected]]" | ||
} | ||
} | ||
``` | ||
## __Regex__ | ||
``` | ||
[a-z0-9]{32} | ||
``` | ||
|
||
## __Example API key__ | ||
``` | ||
tue3sv9hzsey1me4l7fwq3t46u5k8wag | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# [languagelayer](https://languagelayer.com/documentation) | ||
|
||
## __Description__ | ||
Language Detection JSON API supporting 173 languages | ||
|
||
## __Example Request__ | ||
* Curl | ||
``` | ||
curl "https://api.languagelayer.com/detect?access_key={{token}}&query=The%20pessimist%20complains%20about%20the%20wind%3B%20the%20optimist%20expects%20it%20to%20change%3B%20the%20realist%20adjusts%20the%20sails" | ||
``` | ||
|
||
* Raw | ||
``` | ||
GET /detect?access_key={{token}}&query=The%20pessimist%20complains%20about%20the%20wind%3B%20the%20optimist%20expects%20it%20to%20change%3B%20the%20realist%20adjusts%20the%20sails HTTP/1.1 | ||
Host: api.languagelayer.com | ||
... | ||
``` | ||
|
||
## __Response__ | ||
* Success | ||
``` | ||
{ | ||
"success": true, | ||
"results": [ | ||
{ | ||
"language_code": "en", | ||
"language_name": "English", | ||
"probability": 83.896703655741, | ||
"percentage": 100, | ||
"reliable_result": true | ||
} | ||
] | ||
} | ||
``` | ||
* Error | ||
``` | ||
{ | ||
"success": false, | ||
"error": { | ||
"code": 101, | ||
"type": "invalid_access_key", | ||
"info": "You have not supplied a valid API Access Key. [Technical Support: [email protected]]" | ||
} | ||
} | ||
``` | ||
## __Regex__ | ||
``` | ||
[a-z0-9]{32} | ||
``` | ||
|
||
## __Example API key__ | ||
``` | ||
tue3sv9hzsey1me4l7fwq3t46u5k8wag | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# [mediastack](https://mediastack.com/documentation) | ||
|
||
## __Description__ | ||
Free, Simple REST API for Live News & Blog Articles | ||
|
||
## __Example Request__ | ||
* Curl | ||
``` | ||
curl "https://api.mediastack.com/v1/news?access_key={{token}}&keywords=tennis&countries=us,gb,de" | ||
``` | ||
|
||
* Raw | ||
``` | ||
GET /v1/news?access_key={{token}}&keywords=tennis&countries=us,gb,de HTTP/1.1 | ||
Host: api.mediastack.com | ||
... | ||
``` | ||
|
||
## __Response__ | ||
* Success | ||
``` | ||
{ | ||
"pagination": { | ||
"limit": 100, | ||
"offset": 0, | ||
"count": 100, | ||
"total": 293 | ||
}, | ||
"data": [ | ||
{ | ||
"author": "TMZ Staff", | ||
"title": "Rafael Nadal Pulls Out Of U.S. Open Over COVID-19 Concerns", | ||
"description": "Rafael Nadal is officially OUT of the U.S. Open ... the tennis legend said Tuesday it's just too damn unsafe for him to travel to America during the COVID-19 pandemic. \"The situation is very complicated worldwide,\" Nadal wrote in a statement. \"The…", | ||
"url": "https://www.tmz.com/2020/08/04/rafael-nadal-us-open-tennis-covid-19-concerns/", | ||
... | ||
} | ||
] | ||
} | ||
``` | ||
* Error | ||
``` | ||
{ | ||
"error": { | ||
"code": "invalid_access_key", | ||
"message": "You have not supplied a valid API Access Key." | ||
} | ||
} | ||
``` | ||
## __Regex__ | ||
``` | ||
[a-z0-9]{32} | ||
``` | ||
|
||
## __Example API key__ | ||
``` | ||
tue3sv9hzsey1me4l7fwq3t46u5k8wag | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# [positionstack](https://positionstack.com/documentation) | ||
|
||
## __Description__ | ||
Accurate Forward & Reverse Batch Geocoding REST API | ||
|
||
## __Example Request__ | ||
* Curl | ||
``` | ||
curl "http://api.positionstack.com/v1/forward?access_key={{token}}&query=1600%20Pennsylvania%20Ave%20NW,%20Washington%20DC" | ||
``` | ||
|
||
* Raw | ||
``` | ||
GET /v1/forward?access_key={{token}}&query=1600%20Pennsylvania%20Ave%20NW,%20Washington%20DC HTTP/1.1 | ||
Host: api.positionstack.com | ||
... | ||
``` | ||
|
||
## __Response__ | ||
* Success | ||
``` | ||
{ | ||
"data": { | ||
"results": [ | ||
{ | ||
"latitude": 38.897675, | ||
"longitude": -77.036547, | ||
"label": "1600 Pennsylvania Avenue NW, Washington, DC, USA", | ||
"name": "1600 Pennsylvania Avenue NW", | ||
"type": "address", | ||
"number": "1600", | ||
"street": "Pennsylvania Avenue NW", | ||
"postal_code": "20500", | ||
"confidence": 1, | ||
"region": "District of Columbia", | ||
"region_code": "DC", | ||
"administrative_area": null, | ||
"neighbourhood": "White House Grounds", | ||
"country": "United States", | ||
"country_code": "US", | ||
"map_url": "http://map.positionstack.com/38.897675,-77.036547" | ||
} | ||
] | ||
} | ||
} | ||
``` | ||
* Error | ||
``` | ||
{ | ||
"error": { | ||
"code": "invalid_access_key", | ||
"message": "You have not supplied a valid API Access Key." | ||
} | ||
} | ||
``` | ||
## __Regex__ | ||
``` | ||
[a-z0-9]{32} | ||
``` | ||
|
||
## __Example API key__ | ||
``` | ||
tue3sv9hzsey1me4l7fwq3t46u5k8wag | ||
``` |
Oops, something went wrong.