Authorized protocol analysis, OpenFinance-style trade and balance APIs, and runnable source code for BricTrade-Profit for everyone (com.bric.app.bric)
BricTrade holds a rich stream of retail trading signals — demo and live balances, open positions across cryptocurrency, stocks and forex, order lifecycle events, deposit and withdrawal history, and localized support chat metadata. Our team refactors these surfaces into clean, authorized APIs so that finance teams, dashboards, reconciliation pipelines, and compliance systems can consume them without manual CSV exports.
Mirrors the BricTrade mobile authentication flow. Handles email/phone login, one-time password verification, device binding and silent token refresh. A single call returns a long-lived session handle that downstream services reuse for statement and order queries without re-prompting the end user.
Pulls the full order and execution log: instrument symbol, direction (call/put for digital options, buy/sell for spot), stake (from the ₹20 minimum), payout, expiry timestamp and result. Supports date-range, symbol, and account-type (demo vs live) filters with cursor pagination for accounts containing tens of thousands of trades.
Real-time balance snapshot for the live rupee wallet, the reloadable demo balance, and any locked margin. A webhook channel emits a balance-changed event whenever a deposit, withdrawal or settlement clears, which downstream ERP or reconciliation services can subscribe to for near real-time bookkeeping.
Exports BricTrade deposit and withdrawal records together with the payment method (UPI, card, net banking, wallet). Each row carries a method-level reference ID so finance teams can reconcile inbound settlements against PSP statements without manual lookup.
Thin wrapper that re-exposes the instrument prices the BricTrade app shows — tick bid/ask, candle history and payout percentage for digital options — so algo strategies, back-testers and alerting tools can observe the exact data an end user sees in the mobile app.
Optional channel that surfaces the in-app chat and push notification stream: margin alerts, KYC requests and 24/7 support ticket events. Useful for CRM automation or compliance teams that need a timeline of all customer interactions.
| Data type | Source (screen/feature) | Granularity | Typical use |
|---|---|---|---|
| Account profile | Profile / KYC screen | Per-user, versioned | Identity verification, onboarding audit |
| Live & demo balance | Wallet & demo account (₹10,000 virtual funds) | Real-time, per currency | Treasury reconciliation, UX dashboards |
| Open positions | Portfolio / trading room | Per-contract, per-asset class | Risk control, margin monitoring |
| Trade history | Order book / history tab | Per-execution, millisecond | P&L reporting, tax export, analytics |
| Deposits & withdrawals | Payment methods screen | Per-transaction | PSP reconciliation, AML review |
| Market payout rates | Asset listing / chart | Per-tick, per-symbol | Strategy back-testing, alerting |
| Support interactions | 24/7 chat & email tickets | Per-message | CRM automation, SLA tracking |
Business context: a personal finance startup wants to show its users one consolidated view of positions held on BricTrade alongside spot crypto on CoinDCX and equities on a discount broker.
Data & APIs: the /v1/positions snapshot plus a 15-second webhook from /v1/balance/events; payloads are normalized into an OpenFinance-style Investment resource (instrument, quantity, costBasis, currentValue).
OpenData mapping: mirrors the "Investments" entity in consumer-finance open banking schemas so downstream screens do not need BricTrade-specific logic.
Business context: Indian retail users need yearly trade books for capital gains filing. The app description highlights a ₹20 minimum ticket, which means accounts commonly accumulate thousands of small executions.
Data & APIs: /v1/trades?from=…&to=…&format=xlsx returns a pre-formatted workbook with ISIN-like instrument codes, holding period, and realized P&L.
OpenData mapping: conforms to the "Transactions" slice of OpenFinance specifications, ready for ingestion by Cleartax-style filing tools.
Business context: a small trading desk allocates demo balances to trainees and wants to observe behavior before any capital is deployed.
Data & APIs: subscription to /v1/orders/stream and the demo-account balance channel; the backend tags each event with account_type=demo.
OpenData mapping: an extension of OpenBanking event streams, adapted for retail brokerage surfaces.
Business context: the operator that runs BricTrade receives payments through multiple processors (UPI, net banking, cards); treasury teams must match inbound funds with internal ledger entries.
Data & APIs: /v1/cashflow exports each deposit/withdrawal with PSP reference IDs, so the ERP can match them against gateway statements.
OpenData mapping: equivalent to the "Payments" OpenFinance domain, applied to broker cash-in/out flows.
Business context: BricTrade appears on the RBI Alert List of unlicensed forex trading platforms. Enterprises that serve Indian users need a documented paper trail for any downstream integration with such platforms.
Data & APIs: every API call is logged with consent record, requesting IP, data scope, and retention timer; exportable for internal compliance reviews.
OpenData mapping: follows the SEBI 2025 API-trading circular's guidance on five-year audit trails, adapted to third-party integrators.
// Exchange BricTrade credentials for a session token
POST /api/v1/brictrade/auth/login
Content-Type: application/json
{
"email": "user@example.com",
"otp": "123456",
"device_fingerprint": "ios-2.5.6-abc"
}
// 200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "r_9f8a...",
"expires_in": 3600,
"account_type": "live"
}
// Paginated trade export (JSON or xlsx)
GET /api/v1/brictrade/trades
?from=2026-01-01&to=2026-03-31
&asset_class=crypto,forex,stock
&account=live
&cursor=eyJwIjoyfQ
Authorization: Bearer <ACCESS_TOKEN>
// 200 OK
{
"trades": [
{
"id": "t_8814",
"symbol": "BTC/USDT",
"direction": "buy",
"stake_inr": 50.00,
"payout_pct": 0.87,
"opened_at": "2026-02-14T09:12:03Z",
"closed_at": "2026-02-14T09:13:03Z",
"pnl_inr": -50.00,
"account_type": "live"
}
],
"next_cursor": "eyJwIjozfQ"
}
// Subscriber receives a POST whenever
// a deposit, withdrawal or trade settles.
POST https://client.example.com/hooks/brictrade
X-Signature: sha256=abc...
Content-Type: application/json
{
"event": "balance.updated",
"account_id": "a_199","account_type": "live",
"currency": "INR",
"balance_before": 2130.00,
"balance_after": 2080.00,
"delta": -50.00,
"reason": "trade_settled",
"reference": "t_8814",
"ts": "2026-02-14T09:13:04Z"
}
// Error response contract:
// 4xx -> auto retry with exponential backoff
// 5xx -> dead-letter after 6 attempts
Any integration with a retail trading app in India must respect the SEBI 2025 API-trading framework (static IP binding for programmatic clients, mandatory two-factor authentication, and an audit trail retained for at least five years), the RBI guidance on unlicensed forex platforms — BricTrade is presently on the RBI Alert List — and the Digital Personal Data Protection Act, 2023 for any personal or financial data that crosses Indian borders.
We also design every pipeline to be GDPR-aware when integrators serve EU residents: explicit consent capture, purpose limitation, and on-demand data deletion. For broker-side agreements we align with ISO 27001 control families; for messaging and storage we default to TLS 1.2+ in flight and AES-256 at rest.
A standard BricTrade integration follows four stages: Client App → Auth / Ingestion Gateway → Normalization & Storage → Client-facing API or Analytics sink.
BricTrade-Profit for everyone (package com.bric.app.bric) has surpassed one million Android installs and its v2.5.6 release shipped in March 2026. It targets price-sensitive retail traders — minimum ticket ₹20, reloadable ₹10,000 demo account, weekend trading — primarily across the Indian subcontinent, with the corporate entity (Arjuna Perkasa Berjangka, PT) based in Jakarta, Indonesia. Typical users are first-time retail traders exploring crypto, stocks or forex on mobile, often alongside accounts on CoinDCX, CoinSwitch or discount brokers such as Zerodha and Groww. Integration demand is strongest from B2B2C fintech wrappers, personal-finance dashboards, and compliance tooling that needs to surface activity on unregistered or watch-listed venues for due diligence.
Tap any screenshot to view the full-resolution version. Images are served directly from the official store listing.
Retail traders rarely use a single venue. The following apps are regularly found alongside BricTrade in Indian and global portfolios, and integrators often need a unified export layer across several of them.
A FIU-registered Indian crypto exchange with 10M+ registered users. Integrators commonly merge CoinDCX spot and futures statements with BricTrade crypto trades to produce a single capital-gains report.
One of India's oldest crypto exchanges / aggregators with 25M+ users. Its broad asset coverage makes it a natural partner data source when building a rupee-denominated portfolio view that also includes BricTrade.
India's largest crypto futures & options venue by daily volume, often exceeding USD 1bn. Users who trade digital options on BricTrade frequently keep leveraged crypto positions on Delta Exchange, so a combined risk view is a common ask.
Positioned as a passive crypto-investing platform with curated baskets. Long-term holders who use Mudrex for buy-and-hold and BricTrade for short-term trades need both streams normalized into one wealth snapshot.
The world's largest crypto exchange by volume. Many BricTrade users also run a Binance wallet, so exporting Binance trade and transfer history alongside BricTrade is one of the most common two-venue integrations.
An FIU-licensed global exchange with a strong compliance reputation. Pairing a Coinbase export with BricTrade is typical for users who keep regulated spot balances on Coinbase while exploring digital options.
A publicly traded broker holding eight Tier-1 licenses with access to 19,000+ global markets. Indian users who use IG for CFDs and BricTrade for mobile-first trades need a merged reporting layer.
A global forex and CFD broker available through MetaTrader. XM's currency pairs complement BricTrade's forex offering, so a dual-venue forex P&L export is a frequent integration scope.
India's largest discount broker, with a mature Kite Connect API. A standard request is to combine Zerodha equity and F&O contract notes with BricTrade trading data for a single annual tax workbook.
A fast-growing mobile-first broker with a public trade API. Integrators often funnel Groww portfolio snapshots and BricTrade activity into the same consumer-finance dashboard.
We are an independent technical service studio specializing in App interface integration and authorized API delivery. Our engineers have years of hands-on experience in mobile fintech, payments, and protocol analysis, and we ship production-ready connectors for consumer finance platforms across South and Southeast Asia, the Middle East, and Latin America.
To request a quote or submit the target app and requirements for BricTrade-Profit for everyone, use our contact page. We respond within one business day and can sign an NDA before any data sample is exchanged.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Can you also integrate CoinDCX, Zerodha, Groww or Binance alongside BricTrade?
Bric Trade is a mobile trading platform positioned as "profit for everyone" and distributed on Google Play under the package com.bric.app.bric. The app states that users can trade "the world's most popular assets" free from commissions, contract fees and minimum deposits, with a focus on cryptocurrency, stocks and forex. The latest public release is version 2.5.6 (March 2026) and the listing has passed one million installs.
Top reasons the app highlights in its store listing:
Risk disclosure (as published by the operator): Investment in stocks and all other investment products involves substantial risk of loss and is not suitable for every investor. The value of stocks may fluctuate and clients may lose more than their original investment.
Operator & contact: Arjuna Perkasa Berjangka, PT — The H Tower Lt. 12.A/G, Jl. H.R. Rasuna Said No. 20, Jakarta Selatan 12940. Support email: support@brictrade.com.
Regulatory note: The Reserve Bank of India has added BricTrade to its Alert List of unlicensed forex trading platforms, and the app is not registered with SEBI. Any integration with BricTrade should account for this status; this page frames only the technical/OpenData integration angle and does not constitute investment advice or an endorsement of the platform.