API Relay Dashboard

An intermediary service to relay and authenticate API requests.

How to Use the Relay
Send your requests to the following endpoints on this server.

Relay Endpoint: /api/address

This endpoint supports GET and PATCH requests. You must include your user credentials as headers.
Example GET Request (cURL)
curl --request GET \
  --url http://<your-relay-host>/api/address \
  --header 'X-User-UID: <your-user-id>' \
  --header 'X-User-Email: <your-email@example.com>'
Example PATCH Request (cURL)
curl --request PATCH \
  --url http://<your-relay-host>/api/address \
  --header 'Content-Type: application/json' \
  --header 'X-User-UID: <your-user-id>' \
  --header 'X-User-Email: <your-email@example.com>' \
  --data '{
    "street": "123 New Avenue",
    "city": "New City"
  }'
Request Logs
TimestampMethodStatusPathDuration
Loading logs...