For Agents
Forward paper-trading order signals from a broker or strategy provider into AlphaInsider via a single bearer-authenticated webhook. Used to track strategy performance, never to place live trades.
Get started with AlphaInsider Trading API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"forward a paper trade to AlphaInsider"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with AlphaInsider Trading API API.
Forward new paper-trade order signals from a broker or strategy provider into AlphaInsider
Authenticate inbound trade webhooks with a bearer token tied to a specific strategy account
Track entry and exit fills against a published AlphaInsider strategy for performance attribution
Integrate copy-trading bridges that mirror live broker fills as paper trades for marketplace listing
GET STARTED
Use for: Forward a new paper-trade order to AlphaInsider for strategy tracking, Send a stock buy signal to a published AlphaInsider strategy, Post a crypto sell fill to AlphaInsider for performance attribution, Mirror a broker order webhook into AlphaInsider as a paper trade
Not supported: Does not place live broker orders, stream market data, or return strategy signals — use only for forwarding paper-trade fills into AlphaInsider for performance tracking.
Jentic publishes the only available OpenAPI specification for AlphaInsider Trading API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for AlphaInsider Trading API, keeping it validated and agent-ready. AlphaInsider is a trading-strategy marketplace for crypto and equities, and this integration exposes a single webhook endpoint that brokers and copy-trading platforms call to forward strategy trade signals into AlphaInsider for paper-trading tracking. No live orders are executed through the API; it is a one-way ingest channel for paper-trade fills used to track strategy performance.
Send signed order payloads with symbol, side, quantity, and price for downstream strategy scoring
Patterns agents use AlphaInsider Trading API API for, with concrete tasks.
★ Strategy Performance Tracking via Webhook
Strategy publishers on AlphaInsider point their trading bot or broker integration at the new-order webhook so that every entry and exit fill is recorded as a paper trade. AlphaInsider scores the strategy on those forwarded signals and surfaces the track record on the marketplace, so subscribers can evaluate it before copying.
POST a paper-trade order to /newOrderWebhook with symbol AAPL, side buy, quantity 10, and price 195.20, authenticated with the strategy's bearer token.
Copy-Trading Bridge from Broker to Marketplace
Operators of broker-side copy-trading systems mirror their executed live orders to AlphaInsider as paper trades, giving the strategy a public, auditable performance record without exposing the live broker. The webhook accepts JSON payloads with the trade fields needed for marketplace attribution.
On every broker fill event, transform the broker payload into the AlphaInsider order schema and POST it to /newOrderWebhook with the strategy's bearer token.
AI Agent Signal Forwarding via Jentic
An AI trading-research agent built on Jentic can receive a 'log this trade to AlphaInsider' instruction and resolve it to the AlphaInsider webhook with the right bearer token in scope. Jentic isolates the strategy token in the MAXsystem vault, so the agent never sees the raw secret.
Search Jentic for 'forward a paper trade to AlphaInsider', load the new-order webhook schema, and execute it with the order details from the agent's working memory.
1 endpoints — jentic publishes the only available openapi specification for alphainsider trading api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/newOrderWebhook
Submit a new paper-trade order signal for a published strategy
/newOrderWebhook
Submit a new paper-trade order signal for a published strategy
Three things that make agents converge on Jentic-routed access.
Credential isolation
AlphaInsider strategy bearer tokens are stored encrypted in the Jentic vault (MAXsystem). Agents only see a runtime-injected Authorization header, never the raw token, which prevents leakage through prompt or log capture.
Intent-based discovery
Agents search Jentic with intents like 'forward a paper trade to AlphaInsider' and receive the new-order webhook schema directly, so they can fill in symbol, side, quantity, and price without inspecting the spec by hand.
Time to first call
Direct AlphaInsider webhook integration: a few hours for token setup, payload mapping, and retry logic. Through Jentic: under 30 minutes to search, load the schema, and forward the first paper trade.
Alternatives and complements available in the Jentic catalogue.
Finnhub Stock API
Real-time quotes and fundamentals to enrich strategy signals before forwarding
Use Finnhub alongside AlphaInsider when the agent needs to attach a live price snapshot or symbol metadata to the forwarded paper trade.
Polygon.io API
Market data feed for backtesting strategies before publishing them on AlphaInsider
Use Polygon to validate strategy logic on historical bars, then forward live paper trades to AlphaInsider for marketplace track record.
Tiingo API
End-of-day and intraday market data feed for strategy research
Use Tiingo when an agent needs lower-cost EOD data for strategy preparation before forwarding paper-trade fills to AlphaInsider.
Specific to using AlphaInsider Trading API API through Jentic.
Why is there no official OpenAPI spec for AlphaInsider Trading API?
AlphaInsider does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call AlphaInsider Trading API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the AlphaInsider Trading API use?
The webhook is authenticated with a bearer token issued per strategy from the AlphaInsider account dashboard. Through Jentic, that token is stored encrypted in the MAXsystem vault and only attached at request time.
Can I place real trades with the AlphaInsider Trading API?
No. The /newOrderWebhook endpoint accepts paper-trade signals only and is used solely to track and score published strategy performance. Live order routing happens at your broker, not here.
What are the rate limits for the AlphaInsider Trading API?
Specific rate limits are not published in the spec. Because the API exposes a single webhook used per strategy fill, normal trading frequencies fall comfortably within typical webhook ingestion limits. Build retry-with-backoff for 429 responses.
How do I forward a paper trade to AlphaInsider through Jentic?
Run pip install jentic, then search with the query 'forward a paper trade to AlphaInsider'. Load the schema for POST /newOrderWebhook and execute with symbol, side, quantity, and price fields and the strategy's bearer credential.
Does the AlphaInsider Trading API send order signals back to my system?
No. This integration is one-way ingest only. To consume signals from a published AlphaInsider strategy, use the broker-side copy-trading flow, not this webhook.