Protocol analysis, mining session APIs, referral graph export, and compliant reward-data pipelines for vb.bitbybit.bonk
The BONK Mining App (package vb.bitbybit.bonk) is a mobile reward app in the broader BONK / Solana memecoin ecosystem. Users log in with email or phone, activate hourly mining sessions, claim daily bonuses, and grow balances through a 10% referral reward program. Every one of those actions produces structured server-side data — a dataset that accounting tools, reward dashboards, KYC onboarding flows, and growth analytics platforms increasingly need to consume through an API rather than screen-scraping.
Start an hourly mining session for a BONK Mining account, query its remaining duration and speed multiplier, and collect accrued BONK when the session closes. Exposes fields such as session_id, started_at, duration_minutes, multiplier, and credited_amount. Typical use: a partner loyalty app reconciling BONK earned per hour against its own reward ledger.
Read each user's streak state (current_streak_days, last_claim_at, next_bonus_tier) and trigger the daily claim flow on their behalf after consent. Useful for retention dashboards that score "daily active miners" and anti-abuse engines that flag unusual claim cadences.
Export the inviter/invitee relationships with materialized 10% payout records per claim event. Returns referrer_id, invitee_id, claim_event_id, payout_amount, and created_at. Supports pagination and date-range filtering for building creator-economy style referral dashboards.
Returns the same figures displayed in the in-app dashboard — total BONK mined, daily bonus total, referral earnings, and lifetime growth — as a single signed JSON payload. Ideal for embedding BONK Mining earnings inside a broader crypto-portfolio tracker or accounting tool.
Emit session.completed, claim.credited, referral.payout, and streak.broken events to your backend. Replaces polling, shrinks latency for downstream fraud scoring, and keeps external dashboards continuously up to date.
Scheduled CSV / Excel / Parquet exports of claim history, referral payouts, and session logs for BI tools (Metabase, Looker, Power BI). Includes column-level schema documentation and a stable primary key (claim_event_id) so downstream warehouses can upsert cleanly.
The BONK Mining App stores a focused but high-signal dataset. The table below enumerates what can be surfaced through an authorized integration, what in-app surface it originates from, the granularity you can expect, and a typical downstream use case.
| Data type | Source screen / feature | Granularity | Typical use |
|---|---|---|---|
| Account profile | Email / mobile login flow | Per user: user_id, email hash, phone hash, created_at | Unified identity across partner reward programs |
| Mining sessions | Hourly mining screen | Per session: start, end, duration, multiplier, credited BONK | Retention analytics, reward reconciliation |
| Daily claim events | Daily Claim Bonus | Per claim: day index, streak length, bonus amount | Loyalty scoring, anti-abuse cadence checks |
| Streak state | Dashboard header | Per user snapshot: current streak, best streak, next tier | Personalized push campaigns and re-engagement |
| Referral edges | Referral Rewards | Per edge: referrer_id, invitee_id, created_at | Creator-economy dashboards, viral-coefficient analysis |
| Referral payouts (10%) | Referral Rewards | Per event: claim_event_id, referrer_id, payout_amount | Payment reconciliation, fraud detection |
| Balance snapshots | All-in-One Dashboard | Per user, per day: total BONK, daily bonus total, referral total | Portfolio aggregation, tax reporting prep |
| Device & session metadata | App runtime | Per session: app version, platform, locale | Platform-split analytics and security monitoring |
Context A Solana-focused portfolio app wants to show BONK Mining balances alongside on-chain wallet holdings. Data / API GET /v1/bonk-mining/dashboard for balance + earnings, plus the webhook claim.credited to refresh in near real time. OpenData angle Mirrors OpenBanking account-aggregation: read-only, consent-scoped, and delivered as normalized JSON so the tracker can merge off-chain reward ledgers with on-chain balances.
Context A growth team needs a per-inviter dashboard of 10% referral payouts and wants to flag fan-out patterns that suggest self-referral rings. Data / API GET /v1/bonk-mining/referrals paged edges + GET /v1/bonk-mining/referral-payouts. OpenData angle The same "export the referral graph" pattern used in OpenFinance for agent networks — we deliver consent-based, minimized data with aggregation-ready schemas.
Context Power users across MiCA-regulated EU markets need an exportable log of daily claim amounts and session credits for tax prep. Data / API Scheduled CSV export of claim events and session credits, keyed on claim_event_id. OpenData angle Mirrors OpenBanking statement exports — standardized columns (date, type, amount, balance_after) so any accounting tool can ingest the feed without custom code.
Context A CRM tool wants to push a reminder before a user's streak breaks. Data / API GET /v1/bonk-mining/streak?user_id=... and the streak.broken webhook. OpenData angle Event-driven OpenData: the CRM subscribes to a narrow, well-defined topic rather than polling the full account, reducing request volume and exposure.
Context A compliance partner profiles accounts that claim at superhuman cadences or present device/behavior anomalies. Data / API Device/session metadata plus claim event timing from the webhook stream. OpenData angle Exposes only hashed identifiers and the risk-relevant fields — aligned with GDPR data-minimization and MiCA's Article 101 privacy-by-design requirement.
POST /api/v1/bonk-mining/auth/login
Content-Type: application/json
{
"method": "email_otp",
"identifier": "user@example.com",
"otp": "483019",
"device_fingerprint": "c0ffee-21ab"
}
=> 200 OK
{
"account_id": "acc_9f2c81",
"access_token": "Bearer ...",
"expires_in": 3600,
"balance_bonk": "142350.75",
"streak_days": 12
}
GET /api/v1/bonk-mining/dashboard
Authorization: Bearer <ACCESS_TOKEN>
=> 200 OK
{
"total_bonk": "142350.75",
"hourly_mining": "98120.00",
"daily_bonus_total": "22110.75",
"referral_total": "22120.00",
"streak": { "current": 12, "best": 41 }
}
GET /api/v1/bonk-mining/referral-payouts
?from=2026-03-01&to=2026-04-01&cursor=next_abc
Authorization: Bearer <ACCESS_TOKEN>
POST https://your-service.example.com/bonk/hook
X-Signature: t=1714000000,v1=3a2b...
Content-Type: application/json
{
"event": "claim.credited",
"account_id": "acc_9f2c81",
"claim_event_id": "cev_0001a2",
"amount_bonk": "1850.00",
"streak_days": 13,
"occurred_at": "2026-04-24T09:17:22Z"
}
// Errors use problem+json:
// 401 invalid_token, 409 streak_already_claimed,
// 429 rate_limited (retry with exponential backoff).
Because the BONK Mining App distributes a crypto-asset reward (BONK, a Solana SPL token), any integration that moves user data across borders should be designed with the EU Markets in Crypto-Assets Regulation (MiCA) in mind — fully applicable since 30 December 2024 — together with the companion Transfer of Funds Regulation (TFR / "travel rule"). MiCA Article 101 explicitly links crypto service providers' duties to GDPR, requiring encryption in transit and at rest, privacy-by-design, and regular audits. For non-EU users, we align with local equivalents such as the UK FCA crypto regime, US FinCEN guidance, and Singapore MAS PSN02.
dashboard.read, referrals.read, and claims.write.The integration runs as a thin, compliant pipeline. We do not warehouse user data by default; instead we normalize and forward it to your stack.
/api/v1/bonk-mining/* shapes.claim.credited, referral.payout, streak.broken.Four nodes, explicit consent at ingress, and signed payloads at egress — the same shape OpenBanking account-information providers use, adapted for a crypto-reward dataset.
The BONK Mining App sits inside the wider tap-to-earn and "free crypto mining" mobile category that expanded rapidly through 2024 and 2025 on the back of Solana memecoin interest and Telegram-style mining mini-apps. Its users are primarily consumer mobile (B2C), predominantly on Android, and lean toward emerging markets in South and Southeast Asia, Latin America, MENA, and Eastern Europe — regions where interest in mobile crypto earning has been strongest. A secondary B2B audience exists: growth teams, creator-economy platforms, and accounting/tax tools that want programmatic access to reward-accrual data for their own users. In 2024–2025 the BONK token itself crossed major centralized-exchange listings and a well-publicized mining-protocol milestone (reportedly around the $5.5M mark), which has pulled more mainstream users into the ecosystem — and with them, a rising need for clean, compliant API access to apps like BONK Mining.
Click any thumbnail to enlarge. These are the in-app surfaces our integration targets — dashboards, mining sessions, daily claim, and referral screens.
Teams that plan a BONK Mining App integration often already maintain — or are asked to support — reward pipelines for other mobile mining and tap-to-earn apps. The apps below are part of the same broader ecosystem; each holds a slightly different data shape, and unified exports across two or three of them are a common customer request.
One of the most widely installed mobile "mine by tapping daily" apps, holding account graphs, daily session records, and security-circle relationships — often requested alongside BONK Mining for combined daily-active-miner dashboards.
Telegram-based tap-to-earn built on TON. Its point-to-token conversion, clan memberships, and referral logs map to many of the same fields a BONK Mining integration surfaces.
Telegram click-to-earn game with HMSTR rewards, upgrade tracks, and minigame histories; users who work with Hamster Kombat often also need unified BONK Mining reward exports.
Tap-to-earn app with a large session dataset and referral tree — the most common "alongside BONK Mining" request for combined tap-earnings feeds.
Lets users tap-mine once every 24 hours and grow team rates through referrals; its daily-check-in model lines up cleanly with BONK Mining's daily claim dataset.
TON-ecosystem play-to-earn mini-app; holds pet-state data and CATI reward records that slot naturally into a multi-app reward warehouse.
Telegram casual-gaming tap-to-earn on TON; exposes a similar event log of taps, bonuses, and referral credits to the one we surface for BONK Mining.
Telegram tap-to-earn tied to a major TON airdrop; users frequently want a single dashboard that covers DOGS earnings and BONK Mining hourly rewards together.
Tap-to-earn with virtual-stock-market mechanics. Its portfolio-style state blends well with BONK Mining balance snapshots when teams build a unified "earning apps" view.
Mobile social mining app combining tap-to-earn with DAG-PoW security; a natural comparison point for teams benchmarking mobile mining reward pipelines.
We are an independent technical studio focused on App interface integration and authorized API integration. Team members have years of hands-on experience in mobile applications, Web3 data pipelines, and fintech — including protocol analysis, interface refactoring, Open Data integration, and third-party SDK integration. For tap-to-earn and mobile mining apps like BONK Mining, we ship end-to-end: protocol analysis, runnable API source, automated tests, and operational documentation.
All work is performed under customer authorization or documented public APIs, with consent logging, data minimization, and NDAs on request.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Do you support pay-per-call?
Send us your target surfaces (hourly mining, daily claim, referral payouts, dashboard aggregate, or a custom scope) and we will return a scoped proposal, sample payloads, and a delivery schedule.
The BONK Mining App (package id vb.bitbybit.bonk, published under the "Bit by Bit" family that also maintains similar apps such as vb.bitbybit.doge and vb.bitbybit.waxmining) is a mobile reward app positioned around the BONK token in the Solana ecosystem. It frames itself as a simple, beginner-friendly way to "grow your BONK balance with consistent activity" — hourly mining, daily claim, and referrals — without asking users to connect a wallet or manage private keys.
Hourly mining made simple. Users activate mining sessions every hour and collect BONK automatically. They can pick a preferred mining duration and boost rewards with flexible mining speeds and multipliers, with the app handling accrual in the background.
Daily claim bonus. A streak system rewards consistency — maintain the streak and each active day unlocks bigger bonuses, helping steady participants earn more over time.
All-in-One earnings dashboard. A single screen tracks hourly mining rewards, daily bonus claims, referral earnings, and total growth, giving users a clear view of performance at any time.
Referral rewards. Inviting a friend earns 10% of their claimed rewards, uncapped — the more active invitees, the more the referrer earns.
Secure email & mobile login. Users log in with email or phone number; no wallet connection or private keys are required, which lowers the bar for first-time crypto users.
This page illustrates a technical integration perspective on the BONK Mining App — how its existing mining, claim, referral, and dashboard surfaces can be exposed as a compliant, OpenData-style API for partner systems. BONK Mining App is a third-party product; this page does not imply any endorsement by or partnership with its publisher.