Developers
Build a Furipay OAuth app, call the REST API, and receive events through webhooks or sockets.
Get started
- Create an app in the Developer Portal.
- Add an HTTPS redirect URI where your service can receive an authorization code.
- Store the client secret on your server; it is shown only when created or rotated.
- Request only the OAuth scopes you need, then call the API with the access token.
New apps remain PENDING until approved. The owner can self-test with their own account while pending, but other users cannot connect until approval.
API base URL
https://api.furipay.me/v1
Protected app API endpoints listed below require this header; POST /oauth/token is the exception:
Authorization: Bearer YOUR_ACCESS_TOKEN
Keep secrets safe: Never put a client secret, refresh token, or webhook secret in browser code, a mobile app, or a public repository.