Guides, manuals and platform references.
AlgoWay Webhook JSON Validator is a public API available on RapidAPI for checking TradingView webhook JSON before the payload is used in a trading automation workflow.
The validator is intended for traders, developers, signal providers, and automation builders who want to inspect webhook payload structure and catch common JSON or field-level problems before sending data into an execution route.
Last updated: September 10, 2026
The API checks webhook-style JSON payloads used in TradingView and trading automation workflows. It can help identify problems in fields commonly used for order routing, including symbol, order action, order type, price, volume, trade type, stop-loss price, and take-profit price.
The validator is useful before connecting a signal source to an execution destination because malformed JSON, missing values, or inconsistent trading fields can cause a webhook request to fail before the actual trading platform is reached.
The API is a validation tool only. It does not execute trades, connect directly to broker accounts, provide financial advice, or guarantee that a payload is suitable for live trading.
The public RapidAPI listing can be useful in several common automation scenarios:
A simple TradingView strategy alert can produce a payload in this form:
{
"platform_name": "metatrader5",
"ticker": "{{ticker}}",
"order_action": "{{strategy.market_position}}",
"order_contracts": "{{strategy.order.contracts}}"
}
The exact fields used by a trading workflow depend on the destination and the automation logic. The purpose of validation is to inspect the JSON structure before the payload is relied on by another service.
Trading webhooks are simple by design, but small formatting mistakes can have large consequences. A missing quotation mark can break JSON parsing. A missing field can leave the receiving service without the information required to construct an order. An incorrect value can pass through several systems before the error becomes visible.
Validation adds a separate checkpoint between signal creation and execution. This is especially useful when alerts are edited manually, generated by Pine Script, transformed by another application, or created dynamically by a signal parser.
The AlgoWay validator is published as a public API project on RapidAPI. Developers can open the listing, review the available API documentation, and test the validator through the RapidAPI interface.
Direct API page: https://rapidapi.com/smayilyan1973/api/algoway-webhook-json-validator
RapidAPI provides the API marketplace interface, while the validator itself is an AlgoWay project intended to help test webhook JSON used in trading automation.
AlgoWay uses webhook messages as an execution-neutral way to move trading instructions from a signal source to a selected destination. TradingView can generate the signal, JSON can describe the requested action, and the execution layer can then interpret the payload for the connected platform.
This separation is useful because the webhook format can be checked independently from the broker or exchange connection. A developer can first verify that the signal payload is structurally correct, then test how that payload is handled by the destination platform.
Yes. The validator is published as a public API project on RapidAPI.
No. It validates webhook-style JSON payloads. It does not execute trades or connect directly to a broker account.
Yes. TradingView webhook JSON is one of the primary use cases for the validator.
Yes. The public RapidAPI listing provides access to the API interface and its available documentation.
If you want to inspect or test the public API, open the official AlgoWay listing on RapidAPI: