Authorized, compliant API delivery for Vietnam equities, derivatives, eKYC, and portfolio data — aligned with State Bank of Vietnam Circular 64/2024/TT-NHNN Open API rules.
NEO Invest holds high-value structured data: eKYC-verified investor accounts, intraday and end-of-day order books, real-time HOSE/HNX/UPCoM quotes, multi-criteria stock filters, transaction history, fee statements, dividend events, and exclusive VPBankS analyst reports. Our team performs protocol analysis on the published mobile flows and packages them into authorized API endpoints suitable for ERP, accounting, fund admin, and compliance pipelines.
Reproducible login flow with username/password + OTP, device-binding token, and silent session refresh. Used by reconciliation services that need to pull statements after midnight without human intervention. Output: token store, refresh hook, and audit log of every authentication event.
Place LO, ATO, ATC, MP, MTL, MOK, MAK, and stop-conditional orders on HOSE / HNX / UPCoM through the same channels NEO Invest exposes after the KRX migration. Use cases: algorithmic execution, smart-order routing, or simply pushing approved trades from a portfolio management system.
Daily holdings snapshot, realized vs unrealized P/L per ticker, tax lot tracking, and corporate-action adjustments (cash dividend, stock dividend, bonus shares, splits). Designed to feed wealth-tech dashboards, robo-advisor backtesting, and 1099-equivalent retail tax tools.
Date-ranged statement export for trades, cash transfers, margin interest, and fees in CSV/JSON/Excel. Typical buyers: outsourced accounting firms reconciling client portfolios into MISA, Bravo, or SAP accounts receivable modules.
Streaming top-of-book and 5-level depth, intraday tick history, plus the same multi-criteria filter NEO Invest exposes (trading volume, transaction value, % change, foreign room, EPS, P/E, P/B). Suitable for screener websites, Telegram trading bots, and quantitative research notebooks.
Pull VPBankS analyst notes, sector reports, target-price changes, and macro briefings from the in-app research panel. Pipe them into Slack, Notion, or compliance review workflows so investment committees see the same primary source as retail users.
Inventory of structured data points exposed through the NEO Invest mobile surface that we can reliably extract and republish as documented APIs. Granularity is calibrated to what the app itself shows, not raw exchange feeds, to stay inside the authorized envelope.
| Data type | Source screen / feature | Granularity | Typical integration use |
|---|---|---|---|
| eKYC profile | Account opening flow (3-minute eKYC) | Personal record (CCCD, address, tax code, risk-profile answers) | KYC reuse, AML screening, partner onboarding |
| Order book | Trading screen, conditional-orders tab | Per-ticket: side, price, qty, status, matched qty, channel | Execution audit, algorithmic OMS feed, surveillance |
| Portfolio holdings | "My portfolio" / asset summary | Per-ticker: qty, avg cost, T+0/T+1/T+2 buckets, NAV | Wealth dashboards, robo-advisor rebalancing |
| Cash & margin balance | Account home, margin tab | Cash, withdrawable, debit balance, interest accrual | Treasury sync, credit-line monitoring |
| Transaction & statement | History → Statement | Trades, transfers, fees, tax, dividends, by date | Accounting, tax filing, fund administration |
| Market data | Watchlist, price board, derivatives board | Last price, 5-level depth, foreign room, OHLC, VN30 futures | Charting tools, screener sites, research APIs |
| Stock filter results | Real-time screener with full criteria | Volume, value, %change, EPS, P/E, P/B, sector flags | Quant research, signal generation, alerts |
| Corporate events | Notification center, event calendar | Dividends, AGM, rights issue, ex-dates | Income forecasting, compliance reporting |
| Research notes | VPBankS analyst reports panel | Title, target price, sector, PDF body | IR aggregators, advisory desks, content sites |
A multi-broker family office holds positions at NEO Invest plus SSI iBoard Pro and TCBS TCInvest. We publish a unified /v1/positions and /v1/transactions endpoint that maps each broker's payload into a single schema (ticker, qty, avg_cost, currency, broker_id). The NEO Invest connector authenticates, pulls daily statements, and pushes them into the family office's data lake. OpenFinance angle: the same pattern Vietnam's Circular 64/2024/TT-NHNN encourages for cross-institution data sharing.
An outsourced accounting firm in Ho Chi Minh City onboards retail clients who use NEO Invest. Our connector calls /statement at month-end with date ranges, normalizes fee/tax fields into Vietnamese chart-of-account codes, and pushes journal entries into MISA SME. Capital gains, dividend withholding, and margin interest expense are reconciled automatically — reducing month-end close from days to hours.
A fintech publisher wants to expose a stock screener powered by NEO Invest's real-time filter logic. We deliver a hosted /screener endpoint accepting JSON criteria (volume range, %change, P/E ceiling, foreign-room threshold). The publisher charges visitors a SaaS subscription; our pay-per-call billing keeps unit economics predictable.
A proprietary trading desk requires full execution audit. The connector streams every order placement, modification, and cancellation as it happens, plus hourly portfolio snapshots, into a Kafka topic. Their surveillance system flags wash trades, front-running, and suspicious size against VN30 cash equities and VN30 index futures. Aligns with State Securities Commission of Vietnam (SSC) supervisory expectations.
A wealth app aggregates VPBank current account balance (via VPBank NEO bank app channel), VPBank Securities NEO Invest positions, and a third-party gold tracker into one view. End users see net worth across products of the same financial group, an "OpenFinance light" experience that does not require formal Open Banking license but stays within the user-consented envelope our compliance pack documents.
// POST /v1/neoinvest/auth/login
{
"username": "VPBKS123456",
"password": "***",
"otp": "458210",
"device_id": "srv-bot-01"
}
// 200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rtk_...",
"expires_in": 1800,
"account_no": "067C123456",
"channel": "neo-invest"
}
// POST /v1/neoinvest/auth/refresh
Authorization: Bearer <refresh_token>
POST /v1/neoinvest/orders
Authorization: Bearer <ACCESS_TOKEN>
Idempotency-Key: 4f9c-2025-11-04-001
{
"account_no": "067C123456",
"symbol": "VPB",
"exchange": "HOSE",
"side": "BUY",
"type": "LO",
"price": 22500,
"quantity": 1000,
"validity": "DAY"
}
// 201 Created
{ "order_id":"ORD-7781","status":"PENDING_NEW","matched_qty":0 }
// Webhook on fill
POST /your/webhook { "order_id":"ORD-7781","status":"FILLED",
"matched_qty":1000,"avg_price":22510,"fee":33765 }
GET /v1/neoinvest/statement
?account_no=067C123456
&from=2025-10-01&to=2025-10-31&format=json
// Response (truncated)
{
"currency":"VND",
"opening_balance":143200000,
"closing_balance":151870500,
"lines":[
{"date":"2025-10-03","type":"BUY","symbol":"FPT",
"qty":200,"price":136500,"fee":40950,"tax":0},
{"date":"2025-10-15","type":"DIV_CASH","symbol":"VPB",
"qty":1000,"amount":1000000,"tax_pct":5}
]
}
GET /v1/neoinvest/portfolio?account_no=067C123456
POST /v1/neoinvest/screener
{
"exchange":["HOSE","HNX","UPCOM"],
"filters":{
"volume_min":500000,
"pct_change":{"min":2,"max":15},
"pe_max":18,
"foreign_room_pct_min":3
},
"sort":"value_traded:desc",
"limit":50
}
// 200 OK -> array of {symbol, last, change_pct,
// volume, value, pe, pb, foreign_room}
NEO Invest sits at the intersection of banking, securities, and personal data, so any integration must respect Vietnamese statute as well as international counterparty expectations.
A NEO Invest deployment usually follows a four-stage pipeline that keeps the mobile-app surface, our gateway, the storage layer, and downstream consumers cleanly separated:
NEO Invest is positioned for Vietnamese retail and mass-affluent investors already inside the VPBank ecosystem — bank customers who want to extend their relationship into HOSE-listed equities, derivatives, and bonds without leaving the group. Primary regions are Hanoi and Ho Chi Minh City urban areas plus the Tier-2 cities VPBank serves through 80 branches and 207 transaction offices. The user base skews to mobile-first investors aged 25–45, comfortable with eKYC, and willing to operate the full investment journey on a phone. Platforms supported: Android (com.chungkhoanvpbank.mobiletrading) and iOS, with a complementary web price board at neoinvest.vpbanks.com.vn.
Click any screenshot to view a larger version. Images are hosted by Google Play and used here only for illustration of the integration surface.
Vietnam has a deep stack of broker apps, each with its own portfolio, statement, and market-data surface. Customers who integrate VPBank Securities NEO Invest frequently also need bridges to the apps below. We treat this list as part of the same data ecosystem rather than a competitive ranking.
Source code delivery from $300 — you receive the runnable API source code, OpenAPI spec, and full documentation; payment after delivery upon satisfaction. Pay-per-call API billing — connect to our hosted NEO Invest gateway and pay only for the calls you actually make, no upfront fee, ideal for screener sites and seasonal accounting workloads.
We are an independent technical studio specialising in App interface integration and authorized API integration. The team combines mobile reverse engineering, fintech back-office experience, and cloud platform engineering, with prior projects across Vietnamese securities, ASEAN payments, EU Open Banking, and Latin American digital banks.
To get a quote, share your target app and a short brief (data types you need, expected call volume, region of use). We respond within one business day.
What do you need from us?
How long does first delivery take?
How do you handle compliance for Vietnamese data?
Can you also bridge to other Vietnamese broker apps?
VPBank Securities - NEO Invest is the official mobile trading app of VPBank Securities Joint Stock Company (VPBankS), a member of the VPBank financial group. The app is designed to bring simplicity and ease to the entire investment journey, with a feature set covering account opening, order placement, portfolio tracking, and market intelligence.
App listings: Google Play com.chungkhoanvpbank.mobiletrading, Apple App Store ID 1629564549. Web price board: neoinvest.vpbanks.com.vn.