Authorized protocol analysis and runnable API source code for portfolio mirroring, pilot trade feeds, and brokerage data export.
Autopilot - Investment App (package finance.iris.autopilot, operated by Autopilot Holdings Corporation and SEC-registered Autopilot Advisers, LLC) lets retail users mirror real-time and disclosed trades from politicians, hedge funds, and themed creators. The app reports more than 90,000 active investors and an asset base that crossed the $750M AUM milestone in 2024 on its way past the $2.4B figure cited inside the app. We build authorized, compliant API access that surfaces the data sitting behind those pilot portfolios — without scraping screens or breaking terms of service.
Replicates the Autopilot mobile authorization handshake (email/SMS OTP, device attestation, refresh-token rotation) and exposes it as a server-to-server /oauth/token endpoint. Use it to bind enterprise users to a service account and run unattended jobs without re-prompting on every sync window.
Lists every public pilot (Pelosi Tracker+, Buffett mirror, hedge-fund baskets, creator pilots), exposes risk metrics, and triggers subscribe/unsubscribe actions. Useful for RIAs that want to white-label specific pilots inside their own client portal.
Wraps Plaid Investments and SnapTrade flows into a single /brokerage/link endpoint, returning a Plaid item_id or SnapTrade authorization_id plus a stable internal account UUID. Handles the Fidelity LPOA migration that Autopilot rolled out in 2024 for richer trade authority.
Reproduces Autopilot's proportional sizing — given a follower's investable cash and a pilot trade, it calculates fractional share quantity, applies the broker's min_notional, and emits an order draft that your OMS can confirm before sending to NPCC/DTCC settlement.
Generates per-account statements for any date range, complete with realized P/L, wash-sale flags, and 1099-eligible tax lots. Output formats: JSON, CSV, XLSX, and PDF; output channels: webhook push, signed S3 URL, or direct SFTP drop.
Delivers signed events for pilot.trade, copy.fill, account.disconnected, and subscription.changed. Includes an idempotency key so partner systems can replay missed events without double-posting trades.
The table below maps the structured data Autopilot exposes inside the app to a normalized OpenFinance schema. All access is performed under written user authorization.
| Data type | Source / screen | Granularity | Typical use |
|---|---|---|---|
| User profile & KYC flags | Onboarding flow, Autopilot Advisers RIA file | Per user, per timestamp | Suitability checks, Reg BI documentation |
| Pilot catalog | "Discover Pilots" tab, marketplace.joinautopilot.com | Per pilot (id, name, AUM under copy, risk score, fee tier) | White-label pilot picker, factor research |
| Pilot trade events | Pilot detail screen, "Trades" feed | Per trade (ticker, side, weight, disclosure_ts, source_url) | Backtesting, alpha capture, news triggers |
| Connected brokerage list | "Settings → Brokerages" (Plaid / SnapTrade) | Per institution (Robinhood, Schwab, Fidelity LPOA, Webull, E*TRADE, TD Ameritrade) | Account aggregation, support tooling |
| Holdings & cost basis | "Portfolio" tab | Per position (symbol, qty, avg_cost, market_value) | Net-worth dashboards, advisor reporting |
| Copy-trade fills | "Activity" / order history | Per fill (order_id, pilot_id, qty, price, ts) | Audit trail, performance attribution |
| Subscription & billing | Autopilot Club, Plus paywall | Per user (plan, renewal_ts, paid_pilots[]) | LTV analytics, churn modeling |
| Performance metrics | Pilot detail charts | Per pilot, per interval (return %, drawdown, sharpe) | Benchmarking, marketing collateral |
Business context: An advisor wants to offer the Pelosi Tracker+ and Buffett mirror to clients but inside the firm's own SMA portal.
Data & APIs: Pilot catalog API + per-client holdings export + copy-trade webhook. We map each Autopilot pilot_id to an internal model portfolio.
OpenFinance fit: The advisor reads holdings via Plaid Investments (read-only) and writes orders through SnapTrade or a custodian LPOA, mirroring Autopilot's own architecture.
Business context: A US tax-prep vendor needs end-of-year 1099-equivalent data for every Autopilot user it serves.
Data & APIs: Statement export endpoint returning realized P/L, wash-sale flags, and short/long-term lot classification per fill.
OpenFinance fit: The export aligns with the FDX (Financial Data Exchange) Tax schema, so the same payload also feeds Intuit, H&R Block, and TaxAct connectors.
Business context: A media outlet building a STOCK Act dashboard wants timely Pelosi/Crenshaw/Pelosi-spouse trades the moment Autopilot ingests them.
Data & APIs: Pilot trade feed filtered by category=politician; webhooks deliver each new trade within seconds of disclosure.
OpenFinance fit: Acts as an OpenData layer over public 45-day disclosures, enriched with Autopilot's normalization (ticker mapping, option-vs-equity flag).
Business context: A robo wants to offer "Pilot overlays" alongside its core ETF model — e.g. 80% target-date fund + 20% Autopilot pilot.
Data & APIs: Subscription API to provision the pilot, sizing engine to compute the 20% sleeve, fills webhook to update reporting.
OpenFinance fit: The overlay is rebalanced through the same OpenBanking-style consent grant, with an audit log per allocation change.
Business context: A quant team wants 3 years of pilot trade history to backtest a "follow-the-politician" factor against the Russell 3000.
Data & APIs: Bulk historical export of pilot trades, holdings snapshots, and daily NAV per pilot, delivered as Parquet on S3.
OpenFinance fit: Same dataset can feed factor libraries (Alphalens, Zipline) without reverse-engineering 13F filings or Periodic Transaction Reports.
POST /api/v1/autopilot/oauth/token
Content-Type: application/json
{
"grant_type": "password",
"email": "user@example.com",
"otp": "428193",
"device_id": "ios-7f3a...",
"client_id": "studio-partner-001"
}
200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rt_e3a9...",
"expires_in": 3600,
"user_uuid": "u_01HZX9..."
}
GET /api/v1/autopilot/pilots/8735/trades?since=2026-04-01
Authorization: Bearer <ACCESS_TOKEN>
200 OK
{
"pilot_id": 8735,
"pilot_name": "Pelosi Tracker+",
"trades": [
{
"trade_id": "t_88af",
"ticker": "NVDA",
"side": "BUY",
"weight": 0.042,
"disclosure_ts": "2026-04-22T13:05:00Z",
"source": "STOCK Act PTR"
}
],
"next_cursor": null
}
POST /api/v1/autopilot/webhooks
Authorization: Bearer <ACCESS_TOKEN>
{
"event": "copy.fill",
"url": "https://partner.example.com/hooks/autopilot",
"secret": "whsec_..."
}
// callback payload (signed with HMAC-SHA256)
{
"event": "copy.fill",
"user_uuid": "u_01HZX9...",
"pilot_id": 8735,
"order_id": "o_4499",
"ticker": "NVDA",
"qty": 0.61,
"fill_price": 882.31,
"ts": "2026-04-22T13:05:42Z",
"broker": "schwab"
}
Error handling follows RFC 7807 problem-details. Common conditions: brokerage_disconnected (Plaid ITEM_LOGIN_REQUIRED), insufficient_buying_power, fractional_unsupported for brokers that block sub-share orders, and pilot_paused when a creator throttles signal release.
Autopilot Advisers, LLC is a US SEC-registered investment adviser headquartered at 200 Spectrum Center Dr., Irvine, CA 92618; our integrations are designed to keep partners on the right side of that registration. Every flow we build documents user authorization, applies data-minimization (hashed user IDs, no raw passwords ever stored), and produces an immutable audit log retained for the SEC's five-year recordkeeping rule (17 CFR § 275.204-2).
Where partners distribute copy-trading internationally, we extend coverage to the relevant local frameworks: SEC Regulation Best Interest (Reg BI) and FINRA Rule 2210 for US retail communications, GDPR for any EU resident profile data, FCA PS21/3 rules on copy-trading in the UK, and Canadian CSA guidance on marketplace-style automated investing. We also align brokerage data fetches with the Financial Data Exchange (FDX) Investments 5.0 spec so downstream consumers can plug in without re-mapping fields.
A typical deployment looks like this:
Autopilot is a US-centric retail investing platform with an iOS-first user base and active Android distribution via the Play Store (finance.iris.autopilot). Its fastest-growing segments are millennial and Gen-Z self-directed investors who want exposure to political-disclosure trades, plus a growing roster of registered investment advisors who use the Autopilot Advisers SMA program — the company is publicly recruiting an "RIA Growth Lead" and rolled out the Fidelity LPOA model in 2024 to court fee-only firms. Roughly three million app downloads and 80,000+ paid Plus subscribers anchor the funnel; the page you are reading is built for partners targeting any layer of that stack — from neobank embedded-investing teams to compliance-tech vendors that need normalized, authorized access to the underlying portfolios.
Click any thumbnail to enlarge. These are publicly distributed Google Play Store screenshots.
Teams evaluating an Autopilot integration almost always run alongside one or more of the following platforms. We frame them here purely as ecosystem context — when partners need a unified copy-trading or brokerage data view across products, the same OpenFinance plumbing covers all of them.
An SEC-registered, FINRA-member copy-trading broker-dealer. Holds full US brokerage records and order-routing data; partners often need to reconcile Dub fills against Autopilot pilot signals on the same tickers.
Global social-investing platform with multi-asset accounts (equities, ETFs, crypto, CFDs). Holds rich social-graph data and copier/copied relationships that pair naturally with Autopilot pilot trade feeds for cross-platform leaderboards.
Mobile-first investing app with curated portfolios and savings products. Stores per-user allocation goals — useful when consolidating retirement, savings, and copy-trading positions into a single OpenFinance dashboard.
Algorithmic trading platform that lets users build symbolic, rule-based strategies. Holds strategy DSL and backtest data; some partners pipe Autopilot pilots into Composer as a data input for further rule-based filtering.
AI-driven strategy marketplace targeting retail investors. Holds quant strategy metadata and signed trade feeds — frequently cross-referenced with Autopilot pilots when teams build "best-of" copy-trading aggregators.
Pie-based automated investing platform, IRA-friendly, with rebalancing data per "pie." When users hold both an M1 pie and an Autopilot pilot, partners often need a normalized holdings export so they aren't double-counting positions.
Robo-advisor with goal-based portfolios, tax-loss harvesting, and 401(k) services. Stores goal allocations and TLH events that complement Autopilot's discretionary pilot positions in a holistic wealth view.
Long-running automated trading and signal marketplace for both retail and prop traders. Provides per-strategy fills and equity curves; integration partners reconcile Collective2 systems against Autopilot political pilots for institutional clients.
Trading-bot marketplace with both code and rule-based bot builders. Holds bot configurations and execution telemetry; teams that operate cross-asset strategies often unify Trality fills with Autopilot equity pilot fills.
Retail copy-trading platform with a focus on social discovery. Holds trader-of-traders relationships and mobile-first dashboards; same OpenBanking-style consent flow we use for Autopilot covers Pelican broker connections.
We are an independent technical studio specializing in App interface integration and authorized API integration, with deep hands-on experience across mobile applications and fintech. Our team has shipped integrations for retail brokerages, neobanks, RIA back-offices, and tax software, so we recognize the specific quirks of copy-trading platforms — refresh-token storms, fractional-share rounding, late-arriving political disclosures, and broker LPOA upgrades like the one Fidelity rolled out in 2024.
For quotes, sandbox access, or to scope an Autopilot integration, please open our contact page. Send your target use case (RIA dashboard, tax export, signal research, etc.) and we will return a deliverables list and timeline.
What do you need from me to get started?
Which brokerages are tricky?
How do you handle compliance?
Autopilot: Revolutionize Your Investing Experience. Experience a new way to invest with Autopilot, the app that allows you to automate your portfolio by following the strategies of top traders. Autopilot makes investing stress-free, exciting, and secure.
Key Features:
Get Started in 3 Easy Steps:
Disclosures. Investing in securities involves significant risk, including the risk of loss of principal. Past performance does not guarantee future results, and there can be no assurance that any investment strategy or security will meet its objectives or achieve any specific financial outcome. You should only invest risk capital that you can afford to lose without impacting your financial stability.
The information provided on this website and the Autopilot app is for informational purposes only. Autopilot Holdings Corporation ("Autopilot Holdings") is not an investment adviser and does not provide investment advice. Advice provided on this website and through the Autopilot app is generated and managed by Autopilot Advisers, LLC ("Autopilot Advisers"; together with Autopilot Holdings, "Autopilot"), which is an investment adviser registered with the Securities and Exchange Commission (SEC).
Autopilot, 200 Spectrum Center Dr. Irvine, CA 92618.