POST
/
send-api-transactions
Submit Signed Transactions
curl --request POST \
  --url https://api.sandbox.brickken.com/send-api-transactions \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "signedTransactions": [
    "<string>"
  ],
  "rpcUrl": "{URL_TO_RPC} but can be omitted",
  "chainId": "aa36a7",
  "method": "newTokenization"
}'
{
  "txResponses": [
    {
      "hash": "<string>",
      "from": "<string>",
      "to": "<string>",
      "data": "<string>",
      "type": "<string>",
      "statusTx": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Body

application/json

Response

200 - application/json

Successful response

The response is of type object.