When to Use
Invoke this whenever a bot connects to the Alpaca Trading API (or any broker with distinct paper/live environments). Connecting a paper strategy to Alpaca's live endpoint (https://api.alpaca.markets) using live API keys — or passing live order signals into a paper endpoint — is a catastrophic operational error. Pinning the base URL per environment, inspecting the key prefix, probing /v2/account for tradability, and requiring an explicit ALLOW_LIVE_TRADING environment variable are all mandatory before any order is submitted.
The base URL is the control that actually separates the environments. Alpaca serves paper accounts from https://paper-api.alpaca.markets and live accounts from https://api.alpaca.markets; a live account is not reachable through the paper host. Every other check in this skill is defence-in-depth layered on that pin — treat them as corroboration, never as a substitute.
When NOT to Use
- Brokers without separate paper/live endpoints: If a single API base URL serves both environments and differentiation is done purely via credentials, this skill's URL-matching logic does not apply. Use broker-specific auth patterns instead (see
headless-broker-auth-patterns). - Backtesting or simulation engines: When running historical replays or simulated fills with no network calls to a real broker API, environment segregation is irrelevant.
- Non-Alpaca brokers with different credential schemes: The
PK.../AK...prefix convention is Alpaca-specific. Brokers using different key formats (e.g., IBKR account IDsDU.../U...) require their own validation logic. For a broker-agnostic host allow-list, seesandbox-credential-leakage-prevention. - Read-only market data access: If the integration only consumes market data endpoints (not order routing), live capital loss is not a risk and the order guard is unnecessary.
Prerequisites
- Distinct environment variable names for paper vs live credentials (e.g.
ALPACA_PAPER_KEY_IDvsALPACA_LIVE_KEY_ID). - Base URL configuration (
https://paper-api.alpaca.marketsfor paper vshttps://api.alpaca.marketsfor live). - Explicit
ALLOW_LIVE_TRADING=trueenvironment flag for live execution mode.
Workflow
-
Load & Normalise the Environment Mode:
- Coerce the configured environment into a known
PAPER/LIVEvalue before any comparison. A value matching neither must raise, never fall through — an unrecognised mode that skips both branches is an authorisation, not a no-op.
- Coerce the configured environment into a known
-
Inspect Credential Prefixes:
PK...indicates Alpaca paper credentials;AK...indicates live credentials.- Use this to reject a credential carrying the opposite environment's prefix. Do not require a positive prefix match: the convention is widely observed but is not documented by Alpaca, so an unrecognised key format must not be treated as proof of anything (see
references/standards.md).
-
Base URL & Mode Verification:
- Match configuration mode against endpoint URLs:
PAPERmode →https://paper-api.alpaca.marketsLIVEmode →https://api.alpaca.markets
- Match the exact URL against an allow-list, case-normalised. Anything else — including a look-alike host such as
https://api.alpaca.markets.attacker.example— is rejected. Never use a substring orstartswithtest here.
- Match configuration mode against endpoint URLs:
-
Live Execution Safety Gate (
ALLOW_LIVE_TRADING):- Block initialization in
LIVEmode unlessALLOW_LIVE_TRADING=trueis explicitly set. Strip the value before comparing — a trailing newline from a.envloader should not silently block a legitimate live deployment. - Emit a WARNING when live trading is authorised, so the transition is visible in the log record.
- Block initialization in
-
Account API Probe:
- Issue GET
/v2/accounton startup and reject a response that is not a mapping. - Verify the account is tradable:
statusmust beACTIVE(orPAPER_ONLY, which is valid only in paper mode). A missingstatusis a veto, not an assumedACTIVE. - Veto if any order-blocking flag is set:
trading_blocked,account_blocked, ortrade_suspended_by_user. Alpaca documents the first and last as "the account is not allowed to place orders" — a guard that ignores them authorises orders the broker will reject. - Resolve the environment only from signals that actually exist. GET
/v2/accountdoes not return anis_paperfield (verified against Alpaca's account schema and the officialalpaca-pyTradeAccountmodel). Use, in order: anis_paperbool if your SDK wrapper injects one;status == "PAPER_ONLY"; anaccount_numberbeginningPA(observed, unofficial — treat as a positive paper signal only, never as proof an account is live). - If none of those resolve, the environment is undeterminable — log it and fall back on the already-verified base URL. Do not treat "undeterminable" as live: that vetoes every legitimate paper deployment, because the real API never supplies the field.
- Issue GET
-
Order Submission Veto Guard:
- Wrap order routing calls in
AlpacaEnvironmentManager.guard_order(), vetoing any outbound order if environment checks fail or key/URL mismatches occur. - Validate the order itself at the gate — reject a non-positive, non-finite, or non-numeric
qty, an emptysymbol, and anysideoutsidebuy/sell.
- Wrap order routing calls in
Full step-by-step procedure with broker-specific detail: see
references/workflows.md. Broker/framework coverage table for this skill: seereferences/standards.md. Printable pre-flight checklist: seeassets/checklist.md.
Common Pitfalls
- Hardcoding Base URLs: Hardcoding
https://api.alpaca.marketsin code and relying only on switching API keys in.env. - Shared Credential Variable Names: Using generic
ALPACA_KEY_IDfor both paper and live testing, leading to accidental live deployment. - Trusting a nonexistent
is_paperfield: Alpaca's/v2/accountresponse has nois_paperkey. Code written against it readsNoneon every call — so a guard that treats a missing value as live bricks paper trading, and one that treats it as paper waves live accounts through. Resolve the environment from fields the API really returns, and treat "unknown" as unknown. - Letting an unrecognised environment fall through:
if mode == PAPER … elif mode == LIVE …with noelsereturns success for any third value, so a typo'd or foreign enum member authorises a live order with noALLOW_LIVE_TRADINGcheck. Normalise the mode up front and raise on anything unknown. - Defaulting a missing
statustoACTIVE: A truncated or error-shaped account payload then reads as a healthy account. An unreadable account is a veto. - Ignoring the blocked flags:
trading_blocked/account_blocked/trade_suspended_by_usermean the broker will refuse the order. Catching that locally turns a confusing broker rejection into a clear pre-trade veto. - Strict
is Trueon a loosely-typed payload: An adapter that hands back"true"/"false"as strings defeatsif account_data.get("trading_blocked") is True, so an explicitly blocked account reads as unblocked. Accept the string forms and fail closed on a value you cannot interpret. - Substring URL matching:
base_url.startswith("https://api.alpaca.markets")also acceptshttps://api.alpaca.markets.attacker.example. Compare against an exact allow-list. - Missing Live Confirmation Flag: Allowing live trading without an explicit boolean environment variable guard (
ALLOW_LIVE_TRADING=true).
Verification
- Configure paper keys with the live URL and confirm
AlpacaEnvironmentManagerraisesEnvironmentMismatchError. - Attempt live mode initialization without
ALLOW_LIVE_TRADING=trueand confirm execution is blocked. - Construct a config with an unrecognised environment value and confirm it raises rather than validating.
- Simulate an account probe returning
is_paper=Falsewhen configured in paper mode and confirm the startup veto. - Simulate a realistic paper payload with no
is_paperfield (status=ACTIVE,account_number=PA…) and confirm it is accepted, not vetoed. - Simulate
trading_blocked=trueand confirm the order guard vetoes. - Simulate a probe response with no
statusfield and confirm the veto. - Submit
qty=0,qty=NaN, andside="long"throughguard_order()and confirm each is rejected. - Run the unit test suite
python -m unittest discover -s skills/alpaca-paper-live-key-separation/scriptsand confirm a 100% pass rate.