-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Robin Weiland edited this page Aug 16, 2020
·
1 revision
Welcome to the APIBridge wiki!
This will let you connect json web API requests together. Let's say you want to get the runrise time based on your IP location.
These two (which I randomly found) for example achieve this separatly:
https://ipapi.co/json/ location coordinates
https://api.sunrise-sunset.org/json?lat={latitude}&lng={longitude}&date=today some times based on location
The task above would require requesting the location from the first api and then requesting the sunrise time with the location coordinates from the first request.
The APIBridge helps by performing these requests for you.