Autopilot - Investment App API integration (Copy-trading & OpenFinance)

Authorized protocol analysis and runnable API source code for portfolio mirroring, pilot trade feeds, and brokerage data export.

From $300 · Pay-per-call available
OpenData · OpenFinance · Copy-trading protocol · Brokerage sync

Plug Autopilot's pilot signals, portfolio holdings, and trade events into your own stack

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.

Pilot trade feed APIs — Subscribe to politician trackers (e.g. Pelosi Tracker+), hedge-fund 13F mirrors, and creator pilots; receive normalized BUY/SELL events with ticker, side, weight, and disclosure timestamp.
Portfolio holdings export — Pull each user's connected brokerage positions (Robinhood, Schwab, Fidelity LPOA, Webull, E*TRADE, TD Ameritrade) as JSON, CSV, or Excel for reporting and reconciliation.
Allocation & rebalance webhooks — Stream Autopilot's proportional sizing logic so your downstream OMS, tax-lot tracker, or RIA dashboard can settle the same fills.
Compliance-ready audit logs — Every authorization, consent grant, and trade instruction is captured with hashed user IDs for SEC, Reg BI, and internal review.

Feature modules we build for Autopilot integrations

Authorization & session bridge

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.

Pilot catalog & subscription API

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.

Brokerage account linking

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.

Trade execution & sizing engine

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.

Statement & tax-lot exporter

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.

Push notification & webhook layer

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.

Data available for integration

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 typeSource / screenGranularityTypical use
User profile & KYC flagsOnboarding flow, Autopilot Advisers RIA filePer user, per timestampSuitability checks, Reg BI documentation
Pilot catalog"Discover Pilots" tab, marketplace.joinautopilot.comPer pilot (id, name, AUM under copy, risk score, fee tier)White-label pilot picker, factor research
Pilot trade eventsPilot detail screen, "Trades" feedPer 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" tabPer position (symbol, qty, avg_cost, market_value)Net-worth dashboards, advisor reporting
Copy-trade fills"Activity" / order historyPer fill (order_id, pilot_id, qty, price, ts)Audit trail, performance attribution
Subscription & billingAutopilot Club, Plus paywallPer user (plan, renewal_ts, paid_pilots[])LTV analytics, churn modeling
Performance metricsPilot detail chartsPer pilot, per interval (return %, drawdown, sharpe)Benchmarking, marketing collateral

Typical integration scenarios

1. RIA white-label pilot dashboard

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.

2. Tax software statement ingestion

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.

3. Compliance monitoring for political trade disclosures

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).

4. Robo-advisor portfolio overlay

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.

5. Performance research & backtesting

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.

Technical implementation

1. Authorize a follower account

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

2. Pull pilot trade feed

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
}

3. Subscribe to copy-fill webhook

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.

Compliance & privacy

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.

Data flow / architecture

A typical deployment looks like this:

  1. Client App (iOS/Android) — your branded mobile front-end; collects user consent and OTP.
  2. Ingestion / API Gateway — our generated source code: handles Autopilot authorization handshakes, refresh-token rotation, and rate limiting.
  3. Normalization Layer — maps Autopilot's pilot/trade payloads into the FDX Investments schema and dedupes against Plaid/SnapTrade fills.
  4. Storage — partner-owned Postgres (operational) + S3/Parquet (historical for backtests); we never persist raw credentials.
  5. Analytics & Outbound API — exposes BI dashboards, signed webhooks, and Excel/CSV statement exports to your downstream consumers.

Market positioning & user profile

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.

Screenshots

Click any thumbnail to enlarge. These are publicly distributed Google Play Store screenshots.

Autopilot screenshot 1
Autopilot screenshot 2
Autopilot screenshot 3
Autopilot screenshot 4
Autopilot screenshot 5
Autopilot screenshot 6
Autopilot screenshot 7

Similar apps & integration landscape

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.

Dub

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.

eToro CopyTrader

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.

Wizest

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.

Composer

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.

Surmount AI

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.

M1 Finance

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.

Betterment

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.

Collective2

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.

Trality

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.

Pelican Trading

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.

About us

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.

  • Protocol analysis, API design, and runnable source code (Python / Node.js / Go)
  • OpenAPI / Swagger specs, Postman collections, automated regression tests
  • Compliance review aligned with SEC, FINRA, FDX, GDPR, and FCA expectations
  • 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 API endpoints and pay only for the calls you make, no upfront fee.

Contact

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.

Contact page

Engagement workflow

  1. Scope confirmation: pilots needed, brokerages in play, expected call volume, region of end-users.
  2. Protocol analysis and authorization design (2–5 business days).
  3. Build & internal validation against sandbox brokerage accounts (3–8 business days).
  4. Documentation, sample clients, and audit-log review (1–2 business days).
  5. Typical first delivery: 5–15 business days; broker LPOA approvals or RIA paperwork can extend the timeline.

FAQ

What do you need from me to get started?

The target app (Autopilot - Investment App is already covered), the specific data endpoints you want (pilots, holdings, fills, statements), and any sandbox brokerage credentials your team has authorization to share.

Which brokerages are tricky?

Fidelity historically had frequent reconnect prompts in the Plaid path, but the LPOA migration Autopilot completed in 2024 stabilizes long-running sessions. Robinhood, Schwab, Webull, and E*TRADE behave well; TD Ameritrade is being consolidated under Schwab.

How do you handle compliance?

Authorized or documented public APIs only, with logging, consent records, hashed identifiers, and data-minimization guidance. NDAs and data-processing addenda available on request.
Original app overview (appendix)

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:

  • Automated Portfolio Management — Seamlessly connect your portfolio and let Autopilot mirror the moves of expert traders in real-time.
  • Transparent and Responsible Investing — Designed to promote transparency in financial institutions, Autopilot ensures your investments align with successful strategies from political trackers, hedge funds, and other financial experts.
  • Exclusive Access with Autopilot Club — Join the Autopilot Club for perks, future trades, and more. Over 90,000 investors trust Autopilot, managing over $2.4 billion in assets.
  • Secure Integration — Autopilot uses bank-level security to link with your brokerage, allowing you to buy and sell positions automatically as trades become public.

Get Started in 3 Easy Steps:

  1. Confirm Your Portfolio: Choose a portfolio that suits your goals, whether it's a political tracker or a hedge fund strategy.
  2. Connect Your Brokerage: Securely link your brokerage to Autopilot.
  3. Automate Your Trades: Set your investment amount, and let Autopilot handle the rest.

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.