POST
/
account
/
pending
cURL
curl --request POST \
  --url https://core-api-dev.vanish.trade/account/pending \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "timestamp": "<string>",
  "user_address": "<string>",
  "signature": "<string>"
}'
[
  {
    "tx_id": "<string>",
    "action_type": "trade",
    "status": "pending",
    "created_at": "<string>",
    "frozen_balance_changes": [
      {
        "token_address": "<string>",
        "change": "<string>"
      }
    ]
  }
]

Authorizations

x-api-key
string
header
required

Body

application/json

Request payload for querying pending actions.

The body is of type object.

Response

200
application/json

A successful response containing a list of the user's pending actions.

The response is of type object[].