VPBank Securities NEO Invest API integration & OpenFinance protocol analysis

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.

From $300 · Pay-per-call available
OpenData · OpenFinance · HOSE / HNX / UPCoM · eKYC protocol analysis

Connect VPBank Securities NEO Invest accounts, orders, and Vietnam market data to your back office

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.

NEO Invest transaction history API — Buy/sell tickets, matched volume, average price, fees, tax, and settlement state, exported as JSON, CSV, or Excel for fund administrators and family-office bookkeeping.
Portfolio & balance sync — Cash balance, margin utilization, holding NAV, T+ unsettled lines, and cost-basis recalculation pulled into Power BI, Looker, or treasury dashboards.
HOSE/HNX/UPCoM market data relay — VN30, VNINDEX, HNX-Index, UPCoM-Index, plus real-time stock filters covering volume, value, % change, derived through the same channels NEO Invest uses on the new KRX matching engine that went live on 5 May 2025.
eKYC and account onboarding — Mirror the 3-minute eKYC flow (citizen ID OCR + selfie liveness) so partner platforms can pre-fill onboarding data and route opening requests to VPBankS through documented channels.

Feature modules we deliver for NEO Invest

1. Authentication & session bridge

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.

2. Order book & placement

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.

3. Portfolio & P/L analytics

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.

4. Statement & cash-flow export

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.

5. Market data & stock screener

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.

6. Research feed bridge

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.

Data available for integration

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 typeSource screen / featureGranularityTypical integration use
eKYC profileAccount opening flow (3-minute eKYC)Personal record (CCCD, address, tax code, risk-profile answers)KYC reuse, AML screening, partner onboarding
Order bookTrading screen, conditional-orders tabPer-ticket: side, price, qty, status, matched qty, channelExecution audit, algorithmic OMS feed, surveillance
Portfolio holdings"My portfolio" / asset summaryPer-ticker: qty, avg cost, T+0/T+1/T+2 buckets, NAVWealth dashboards, robo-advisor rebalancing
Cash & margin balanceAccount home, margin tabCash, withdrawable, debit balance, interest accrualTreasury sync, credit-line monitoring
Transaction & statementHistory → StatementTrades, transfers, fees, tax, dividends, by dateAccounting, tax filing, fund administration
Market dataWatchlist, price board, derivatives boardLast price, 5-level depth, foreign room, OHLC, VN30 futuresCharting tools, screener sites, research APIs
Stock filter resultsReal-time screener with full criteriaVolume, value, %change, EPS, P/E, P/B, sector flagsQuant research, signal generation, alerts
Corporate eventsNotification center, event calendarDividends, AGM, rights issue, ex-datesIncome forecasting, compliance reporting
Research notesVPBankS analyst reports panelTitle, target price, sector, PDF bodyIR aggregators, advisory desks, content sites

Typical integration scenarios

A. Family-office consolidated reporting

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.

B. Accounting & tax automation

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.

C. Quant research and screener sites

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.

D. Compliance & surveillance for prop desks

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.

E. Cross-app investor dashboards

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.

Technical implementation (sample snippets)

Authenticate & refresh session

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

Place a HOSE limit order (KRX-compatible)

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 }

Pull statement & portfolio

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

Real-time stock filter

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}

Compliance & privacy

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.

Data flow / architecture

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:

  1. Client App / NEO Invest channel — authenticated session under the end user's consent.
  2. Integration gateway — token vault, idempotent request fan-out, retry, schema normalization, and consent-record stamping.
  3. Storage — PostgreSQL for relational records (orders, statements, portfolios), S3-compatible object storage for raw research PDFs, and a Kafka stream for real-time events (fills, market quotes).
  4. Output — REST/GraphQL APIs for partner backends, scheduled CSV/Excel exports for accounting tools, and webhooks for live use cases (fills, margin alerts).

Market positioning & user profile

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.

Screenshots

Click any screenshot to view a larger version. Images are hosted by Google Play and used here only for illustration of the integration surface.

NEO Invest screenshot 1
NEO Invest screenshot 2
NEO Invest screenshot 3
NEO Invest screenshot 4
NEO Invest screenshot 5
NEO Invest screenshot 6
NEO Invest screenshot 7
NEO Invest screenshot 8
NEO Invest screenshot 9
NEO Invest screenshot 10

Similar apps & integration landscape

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.

SSI iBoard / SSI iBoard Pro — Flagship apps from SSI, the broker that took back the #1 brokerage market share lead in 2025. Holds tick-level HOSE/HNX/UPCoM data plus an extensive technical-analysis tool set; teams who also use NEO Invest typically want a unified portfolio view across both brokers.
VPS SmartOne — VPS's retail trading app, known for fast order matching and copy-trading features. Statement formats differ from NEO Invest, so consolidated tax reports usually need a normalization layer.
TCBS TCInvest / iStock / iFuture — Techcom Securities' apps with strong Techcombank integration. Many investors hold equities at TCBS and rely on NEO Invest for VPBank ecosystem benefits, making cross-broker statement export a common ask.
VNDirect DStock / DGO — VNDirect's retail apps, popular with mid- to long-term investors and praised for charting. Similar derivatives-and-margin schema makes it a natural counterparty in multi-broker dashboards.
MBS Mobile — MB Securities' mobile platform, focused on domestic stocks and IPOs. Frequently paired with NEO Invest for clients who follow primary offerings while keeping mainstream order flow at VPBankS.
Vietcap Trading — Vietcap's web and mobile platform with HOSE/HNX/UPCoM coverage. Often integrated alongside NEO Invest by institutional desks tracking advisory flow versus execution flow.
FireAnt — Vietnamese market-analytics community app with intelligent stock filters and alerting. Users who screen on FireAnt and execute on NEO Invest benefit from a webhook bridge that turns FireAnt alerts into NEO Invest order tickets.
FPTS EzMobileTrading — FPT Securities' app for HOSE/HNX/UPCoM. Common in Hanoi-based corporate accounting firms; NEO Invest connectors typically share their statement-export schema.
VCBS Mobile — Vietcombank Securities' app, used heavily by Vietcombank customers. Cross-bank wealth dashboards bring VCBS positions and NEO Invest positions into a single OpenFinance-style view.
Mirae Asset Vietnam & Pinetree — Korean-backed brokers with mobile apps targeting low-fee retail investors. Pinetree was named in the 2025 top-10 retail brokerage rankings; aggregator products commonly request the same statement and portfolio fields we publish for NEO Invest.

What we deliver

Deliverables checklist

  • OpenAPI 3.1 spec covering auth, orders, portfolio, statement, screener, market data
  • Protocol analysis report (mobile flow, token chain, signing scheme, error model)
  • Runnable Python and Node.js reference implementations with retry/backoff
  • Postman collection plus pytest / vitest integration tests
  • Compliance pack: PDPL consent template, Circular 64 mapping, retention schedule
  • Optional Docker deployment of a hosted gateway (pay-per-call mode)

Engagement workflow

  1. Scope confirmation — which NEO Invest features and HOSE/HNX endpoints, expected QPS
  2. Protocol analysis & API design — 2 to 5 business days
  3. Build & internal validation against a test account — 3 to 8 business days
  4. Documentation, sample code, and acceptance tests — 1 to 2 business days
  5. Pilot run, then handover or hosted-gateway go-live

Pricing models

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.

About our studio

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.

  • Full pipeline: protocol analysis → API design → build → validation → compliance review
  • Custom Python / Node.js / Go SDKs with idempotency, retry, and observability built in
  • Deep familiarity with Vietnamese broker apps, HOSE/HNX/UPCoM order types, and the post-KRX trading environment
  • Source-code delivery from $300 or hosted pay-per-call gateway, customer's choice

Contact

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.

Open the contact page

FAQ

What do you need from us?

The target app (VPBank Securities NEO Invest is already provided), a short list of the data points you need (e.g. "daily statement and end-of-day portfolio"), and any test credentials or sandbox access if available. For pay-per-call mode you only need API keys.

How long does first delivery take?

Typical first drop is 5 to 12 business days. Real-time market data streaming or multi-broker stacks take longer, mainly because we run a careful soak test before handing keys over.

How do you handle compliance for Vietnamese data?

We work strictly under user consent or written customer authorization. Every integration ships with a Personal Data Protection Law (Law 91/2025/QH15) mapping, a retention schedule, and a Circular 64/2024/TT-NHNN consent record template, plus optional GDPR DPA for cross-border use.

Can you also bridge to other Vietnamese broker apps?

Yes — we maintain connectors for SSI iBoard / iBoard Pro, VPS SmartOne, TCBS TCInvest, VNDirect DStock, MBS Mobile, Vietcap Trading, FPTS EzMobileTrading, VCBS Mobile, Mirae Asset Vietnam, Pinetree, and the FireAnt analytics app. Cross-broker portfolio and statement consolidation is a standard offering.
📱 Original app overview (VPBank Securities - NEO Invest)

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.

  • Open an online securities account in just 3 minutes via eKYC, including identity verification and risk-profile setup.
  • Place stock trading orders through a simple flow that supports HOSE, HNX, and UPCoM listed instruments.
  • Track and manage your portfolio with a structured, easy-to-read layout for cash, holdings, and unrealized gains.
  • Receive market information in an intuitive, easy-to-understand way that reduces the time needed to analyse new opportunities.
  • Run real-time stock filters across the full criteria set — trading volume, transaction value, percentage change — alongside profile data, transaction history, financial reports, and corporate news.
  • Access exclusive market and business analysis reports written by VPBank Securities experts.
  • Benefit from VPBank ecosystem integration: fast technology infrastructure and a direct relationship with VPBank's banking products.

App listings: Google Play com.chungkhoanvpbank.mobiletrading, Apple App Store ID 1629564549. Web price board: neoinvest.vpbanks.com.vn.