IntegrationsModule 05
Connector
A prepackaged API integration. Someone already wrote the request, the keys, and the error handling for you.
Interactive demo
Request and response visualizer
A service that returns live weather for any city. Your app sends a city name, the service returns temperature and conditions.
Request leaving your server
GET https://api.example-weather.com/v1/now
Authorization: Bearer ****************
Content-Type: application/json
{
"city": "London"
}Response coming back
Nothing yet. Send a request to see the answer.
These responses are mocked in your browser. The shape is exactly what a real service returns.
What makes this work
01
Auth handled
Keys stored on the server
02
Typed calls
Named actions instead of raw urls
03
Retries
Failures handled for you
Related concepts