Integrations

For now, the only way to integrate with our API is by using API requests provided in different languages.
E.g.

python -m pip install requests
import requests

url = "https://test-api.wagefi.co/v1/auth/login"

headers = {
    "accept": "application/json",
    "content-type": "application/json"
}

response = requests.post(url, headers=headers)

print(response.text)