For the complete documentation index, see llms.txt. This page is also available as Markdown.

Solana Send Transaction Curl Example

This page describes how to send Solana transactions using curl

Request Example

// below is the example of fast mode

curl --request POST \
  --url http://frankfurt.solana.blockrazor.xyz:443/sendTransaction \
  --header 'Content-Type: application/json' \
  --header 'apikey: $auth_token' \
  --data '{
  "transaction":"$base64_tx",
  "mode":"fast",
  "revertProtection":false
}'

Last updated

Was this helpful?