latestOpenAPI 3.0.12026-08-16171142480.4 KB

ff1699330afa

TradingView Webhook API

Get webhook request status

Check the processing status of a queued webhook request.

get/rest/api/v1/webhooks/tradingview/requests/{requestId}/status

Path parameters

requestIdstring required

Response

OK

attemptCountinteger

Number of processing attempts (for queued requests)

cachedboolean

Whether this is a cached response from idempotency

codestring

Error code for failed requests

dataobject

Additional data returned with the response

hintstring

Hint for resolving errors

matchCountinteger

Number of positions matched (for close/modify operations)

messagestring

Human-readable message describing the result

originalRequestIdstring

Original request ID if this is a cached response

requestIdstring

Unique request ID for tracking and debugging

statusstring

Processing status (for queued requests)

successboolean

Whether the request was successful

timestampstring date-time

Response timestamp

Example response

{
  "attemptCount": 1,
  "closedPositions": [
    {
      "positionId": "12345678",
      "success": true,
      "symbol": "EURUSD"
    }
  ],
  "code": "AMBIGUOUS_MATCH",
  "hint": "Add 'force: true' to proceed or use more specific matching criteria",
  "matchCount": 3,
  "message": "Position opened successfully",
  "originalRequestId": "req_xyz789",
  "requestId": "req_abc123def456",
  "status": "PROCESSING",
  "success": true
}