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

Curl

This page describes how to build and 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?