Terminaili
Menu
Solana RPC

Solana RPC pricing, kept simple.

Create an account, keep at least $5 in available prepaid credits, then use Plus for 1B requests each month and add another 1B requests with each $5 credit block.

Activation$5 balance
Plus$5 for 1B
Extra$5 per 1B
AccessOne RPC key
Simple

Plus

$5/month

For production apps, bots, and dashboards that need a bigger monthly bucket.

Included
1B requests/month
Throughput
Shared fair use
Overage
$5, or 125 API credits / 1B extra requests
  • Requires at least $5 available prepaid balance
  • Automatic 1B request credit blocks
  • Spend alerts before the next block
Upgrade for $5
API

One tiny catalog for the whole product.

The API is intentionally boring: catalog, usage, credit checkout, and one authenticated JSON-RPC gateway route per network.

curl "https://api.terminaili.com/v1/solana-rpc/plans"

curl "https://api.terminaili.com/v1/solana-rpc/methods"

curl "https://api.terminaili.com/v1/solana-rpc/usage" \
  -H "authorization: Bearer $TERMINAILI_API_KEY"

# JSON-RPC gateway after the downstream RPC node is configured:
curl "https://api.terminaili.com/v1/solana-rpc/mainnet?api-key=$TERMINAILI_API_KEY" \
  -H "content-type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"getBlockHeight"}'

curl "https://api.terminaili.com/v1/platform/organizations/$ORG_ID/billing/solana-rpc-credits/checkout" \
  -H "authorization: Bearer $TERMINAILI_SESSION" \
  -H "content-type: application/json" \
  -d '{"blocks":1,"success_url":"/dashboard?section=rpc","cancel_url":"/dashboard?section=rpc"}'
Methods

Documented against the live gateway.

Terminaili accepts Solana HTTP JSON-RPC over POST. We publish the tested method catalog at /v1/solana-rpc/methods and link back to the official Solana HTTP reference.

WebSocket PubSub is not included in this launch. Users should call the Terminaili gateway URL from their dashboard, never an internal downstream node address.

Tested availableCovered by our live gateway smoke tests.
  • getHealthCluster
  • getVersionCluster
  • getSlotCluster
  • getBlockHeightBlocks
  • getLatestBlockhashTransactions
  • getIdentityCluster
  • getClusterNodesCluster
  • getMaxRetransmitSlotCluster
  • getMaxShredInsertSlotCluster
  • getFirstAvailableBlockBlocks
  • minimumLedgerSlotBlocks
  • getBlocksBlocks
  • getBlocksWithLimitBlocks
  • getBlockBlocks
  • getBlockTimeBlocks
  • getRecentPerformanceSamplesBlocks
  • getRecentPrioritizationFeesTransactions
  • getSignaturesForAddressTransactions
  • getSignatureStatusesTransactions
  • isBlockhashValidTransactions
  • getMinimumBalanceForRentExemptionAccounts
  • getTransactionTransactions
Pass-throughForwarded by the gateway, but not safely smoke-tested with generated payloads.
  • sendTransactionTransactions
Current upstream unsupportedKnown to return an upstream JSON-RPC error today.
  • getAccountInfoAccounts
  • getBalanceAccounts
  • getMultipleAccountsAccounts
  • getProgramAccountsAccounts
  • getFeeForMessageTransactions
  • simulateTransactionTransactions
CatalogPublish /v1/solana-rpc/plans with only free and plus plan IDs.
CheckoutPlus maps to one $5 monthly subscription for the active organization.
CreditsBilling admins can add $5 credit blocks, each worth another 1B requests.
GatewayForward authenticated JSON-RPC calls and meter the monthly API bucket.