BricTrade API integration & trading data export services

Authorized protocol analysis, OpenFinance-style trade and balance APIs, and runnable source code for BricTrade-Profit for everyone (com.bric.app.bric)

From $300 · Pay-per-call available
OpenData · OpenFinance · Protocol analysis · Retail trading API

Turn BricTrade account activity into structured, queryable financial data

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.

Account & session binding — Reproduce the BricTrade login flow (email, OTP, session token refresh) as a programmatic OAuth-style handshake so downstream systems can query on the user's behalf without storing raw credentials.
Trade history and statement export — Paginated endpoints for realized/unrealized P&L, leverage, instrument, entry/exit timestamps, and settlement amount. Output formats include JSON, CSV, Excel and PDF for tax filing.
Multi-asset portfolio sync — Unified snapshot across the three BricTrade asset classes (crypto, stocks, forex) plus the ₹10,000 demo account, mapped into a single OpenFinance-style position schema.

Feature modules

1. Login & session APIs

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.

2. Trade history API

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.

3. Balance & wallet sync

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.

4. Deposit & withdrawal ledger

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.

5. Market data pass-through

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.

6. Support & notification feed

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 available for integration

Data typeSource (screen/feature)GranularityTypical use
Account profileProfile / KYC screenPer-user, versionedIdentity verification, onboarding audit
Live & demo balanceWallet & demo account (₹10,000 virtual funds)Real-time, per currencyTreasury reconciliation, UX dashboards
Open positionsPortfolio / trading roomPer-contract, per-asset classRisk control, margin monitoring
Trade historyOrder book / history tabPer-execution, millisecondP&L reporting, tax export, analytics
Deposits & withdrawalsPayment methods screenPer-transactionPSP reconciliation, AML review
Market payout ratesAsset listing / chartPer-tick, per-symbolStrategy back-testing, alerting
Support interactions24/7 chat & email ticketsPer-messageCRM automation, SLA tracking

Typical integration scenarios

Scenario A — Unified retail trading dashboard

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.

Scenario B — Tax filing & CA workbook export

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.

Scenario C — Risk control for prop-desk style teams

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.

Scenario D — PSP reconciliation for cross-border rupee flows

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.

Scenario E — Compliance audit trail & RBI alert-list diligence

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.

Technical implementation

Login & token exchange

// 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"
}

Trade history export

// 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"
}

Balance-change webhook

// 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

Compliance & privacy

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.

Data flow & architecture

A standard BricTrade integration follows four stages: Client App → Auth / Ingestion Gateway → Normalization & Storage → Client-facing API or Analytics sink.

  • Client App: the mobile or web surface where the user authorizes access.
  • Ingestion Gateway: a protocol-analysis layer that speaks BricTrade's native calls and rate-limits them.
  • Normalization & Storage: maps raw payloads into OpenFinance-style schemas, deduplicates, and persists to Postgres + object storage for exports.
  • Output: REST/GraphQL for dashboards, Kafka or webhooks for event consumers, Excel/PDF for CA and compliance teams.

Market positioning & user profile

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.

Screenshots

Tap any screenshot to view the full-resolution version. Images are served directly from the official store listing.

BricTrade screenshot 1 BricTrade screenshot 2 BricTrade screenshot 3 BricTrade screenshot 4 BricTrade screenshot 5 BricTrade screenshot 6

Similar apps & integration landscape

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.

CoinDCX

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.

CoinSwitch

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.

Delta Exchange

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.

Mudrex

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.

Binance

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.

Coinbase

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.

IG

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.

XM

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.

Zerodha

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.

Groww

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.

What we deliver

Deliverables checklist

  • API specification (OpenAPI 3.1 / Swagger)
  • Protocol and auth flow report (OTP, token refresh, device binding)
  • Runnable source for login, trade and balance APIs (Python / Node.js / Go)
  • Automated test suite with fixtures for demo vs live accounts
  • Compliance guidance aligned to SEBI 2025 and DPDP Act 2023
  • Excel and PDF statement templates for CA filing

Engagement models

  • Source code delivery from $300 — receive runnable API source code and full documentation; pay after delivery upon satisfaction.
  • Pay-per-call API billing — access our hosted endpoints and pay only per call, no upfront cost.

About us

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.

  • Financial and banking Apps — transactions, statements, integration pipelines
  • E-commerce, delivery and retail Apps — orders, payments, inventory sync
  • Hotel, travel and mobility Apps — bookings, itineraries, settlement
  • Social, OTT media and dating Apps — authentication, messaging, profile
  • Two engagement models: source-code delivery from $300, or pay-per-call hosted APIs

Contact

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.

Go to contact page

Engagement workflow

  1. Scope confirmation — name the target integrations (login, trade history, balance, deposits).
  2. Protocol analysis and API design — typically 2–5 business days.
  3. Build and internal validation against demo and live accounts — 3–8 business days.
  4. Documentation, samples and automated tests — 1–2 business days.
  5. First delivery: usually 5–15 business days; third-party sandbox approvals may extend the timeline.

FAQ

What do you need from me?

The target app name (BricTrade-Profit for everyone, already provided), the specific data you want exposed (e.g. trade history, balance sync, deposit ledger), and any existing credentials or sandbox access.

How long does delivery take?

Usually 5–12 business days for the first API drop and documentation; real-time streaming or multi-venue aggregations may add another one or two weeks.

How do you handle compliance?

We only work with authorized data or documented public APIs, apply consent logging and data minimization, and will sign NDAs before any sample exchange. We flag upfront that BricTrade is on the RBI Alert List of unlicensed forex platforms so clients can decide on their own use-case fit.

Can you also integrate CoinDCX, Zerodha, Groww or Binance alongside BricTrade?

Yes. Multi-venue integrations are a core offering — we normalize each source into an OpenFinance-style schema so the consuming app does not need venue-specific logic.
📱 Original app overview (appendix)

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:

  • ₹10,000 demo account — a free, reloadable practice balance with the same functionality and profitability as the live account.
  • Trade amount starting from ₹20 — minimum ticket size designed so new traders can learn without risking a large sum.
  • Multiple payment methods — the platform works with popular, familiar rails without delays.
  • 24/7 fully localized support — reachable by email or through the in-app online chat.
  • Weekend trading — users can invest every day of the week instead of being limited to weekday hours.

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.