Getting Started
Step 1: Get an API Key
Request access at form to get your API key.
Step 2: Submit a Transaction
curl -X POST https://api.tachyon.rath.fi/api/submit-tx \
-H "Content-Type: application/json" \
-H "api-key: YOUR_API_KEY" \
-d '{
"chainId": 1,
"to": "0xABCDEF1234567890abcdef1234567890ABCDEF12",
"value": "1000000000000000000",
"callData": "0x",
"gasLimit": "21000"
}'
Step 3: Track the Transaction
curl "https://api.tachyon.rath.fi/api/tx?id=YOUR_TX_ID" \
-H "api-key: YOUR_API_KEY"
Last updated on