Connect onceIntegrate once. Access every approved Bonty.
Apps connect to Bonty once and choose which brand missions to show. Bonty manages mission tracking, verification, reporting, rewards, and settlement.
- 1An app requests eligible missions.
- 2Bonty returns an approved mission.
- 3A user starts the mission.
- 4The user completes the action with the brand.
- 5The brand confirms the result.
- 6Bonty verifies the mission rules.
- 7The app receives the completion and revenue record.
One integration. A network of revenue-generating missions.
// Example — Bonty API (fictional)
GET /v1/missions?app=nova_pay&audience=active_users
// Response
{
"mission_id": "msn_fd_first_order",
"brand": "FreshDrop",
"action": "delivered_order",
"min_amount": 15,
"reward": { "type": "points", "amount": 200 },
"revenue": { "app": 5.50, "user": 2.50, "bonty": 2.00 }
}
// Later — Bonty postback to your app
POST https://novapay.example/hooks/bonty
{
"mission_id": "msn_fd_first_order",
"user_id": "u_38221",
"status": "verified",
"app_revenue_usd": 5.50
}