Stellar RPC Node
Built for Payments

Connect to Stellar, the blockchain purpose-built for payments and financial inclusion. Experience 3-5 second finality, pennies in fees, and a network serving millions globally.

15 M+

Requests per Day

99.99 %

Network Uptime

< 65 ms

Average Response Time

24/7

Technical Support

Specification Stellar Network

Technical characteristics and available endpoints

Stellar (XLM)

Mainnet & Testnet Support

Network Public (Mainnet)
API Horizon REST API
Uptime 99.99%
Finality 3-5 seconds
Fee 0.00001 XLM (~$0.000001)
Launch 2014

Stellar is a blockchain purpose-built for payments, cross-border transactions, and financial inclusion. Designed for fast, low-cost transfers of any currency, Stellar enables instant settlement between any pair of currencies with pennies in fees. With partnerships including MoneyGram, Circle (USDC), and Franklin Templeton, Stellar processes billions in real-world payment volume, serving millions of users globally.

Key capabilities:

  • Purpose-built for payments and remittances
  • 3-5 second finality for instant settlement
  • Near-zero fees (0.00001 XLM per transaction)
  • Native multi-currency support and pathfinding
  • Built-in decentralized exchange (DEX)
  • Asset issuance and tokenization platform
  • Compliance-friendly architecture
  • Stellar Consensus Protocol (SCP) — FBA consensus
  • Proven at scale: billions in transaction volume

🔗 API Endpoints

HTTPS
https://rpc.crypto-chief.com/stellar/{YOUR_API_KEY}

Replace {YOUR_API_KEY} with your actual API key from the dashboard.

What is a Stellar RPC Node?

Access payments-focused blockchain

A Stellar node (via Horizon API) provides applications with access to a blockchain specifically designed for payments. Unlike general-purpose blockchains, Stellar optimizes for currency exchange, cross-border transfers, and financial inclusion — enabling instant settlement of any currency pair with minimal fees.

Why Stellar for payments

Traditional cross-border payments are slow (days) and expensive (5-10% fees). Stellar enables instant settlement (3-5 seconds) with near-zero fees. The network's native multi-currency pathfinding automatically finds optimal exchange routes, making it trivial to send USD, receive EUR, or convert between any assets on the network.

Stellar advantages:

  • Payment-focused — built for money transfer
  • Instant settlement — 3-5 second finality
  • Near-zero fees — $0.000001 per transaction
  • Multi-currency — native support for any asset
  • Built-in DEX — automatic pathfinding and exchange
  • Proven scale — billions in real-world volume

Stellar Consensus Protocol

Stellar uses SCP (Stellar Consensus Protocol) — a Federated Byzantine Agreement (FBA) system where nodes choose which other nodes to trust. This creates a decentralized network without mining or staking, achieving consensus through mathematical proof while maintaining fast finality and low energy consumption.

How Stellar works:

  1. Users submit payment transactions
  2. Validators reach consensus through SCP
  3. Network finalizes transactions in 3-5 seconds
  4. Multi-currency pathfinding finds optimal routes
  5. Settlement completes with minimal fees

Real-world adoption

Stellar powers real payment systems: MoneyGram uses Stellar for remittances, Circle issues USDC on Stellar, Franklin Templeton tokenized a money market fund on Stellar. This isn't theoretical — Stellar processes billions in actual payment volume serving millions of users.

The network's compliance-friendly design and payment focus make it the go-to blockchain for financial institutions entering crypto.

Technical Documentation

Quick start for developers

Supported API Endpoints

Stellar uses Horizon API (REST) rather than RPC. Key endpoints:

  • GET /accounts/{id} — account details and balances
  • GET /ledgers — ledger (block) information
  • GET /transactions — transaction history
  • POST /transactions — submit transactions
  • GET /operations — operation history
  • GET /payments — payment stream
  • GET /offers — orderbook and offers
  • GET /paths — payment pathfinding
  • GET /assets — asset information

Code Examples

💻

JavaScript (Stellar SDK) — Connection:

const StellarSdk = require('stellar-sdk');

const server = new StellarSdk.Server('https://rpc.crypto-chief.com/stellar/YOUR_API_KEY');

// Load account
const account = await server.loadAccount('GABC123...');
console.log('Sequence:', account.sequence);

// Check balances
for (const balance of account.balances) {
  console.log(`${balance.asset_type}: ${balance.balance}`);
}

// Find payment path
const paths = await server
  .strictSendPaths(
    new StellarSdk.Asset.native(), // Send XLM
    '100', // Amount
    [new StellarSdk.Asset('USD', 'GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX')]
  )
  .call();

console.log('Payment paths found:', paths.records.length);
💻

Python (Stellar SDK) — Setup:

from stellar_sdk import Server, Asset

server = Server('https://rpc.crypto-chief.com/stellar/YOUR_API_KEY')

# Load account
account = server.accounts().account_id('GABC123...').call()
print(f'Account balances: {len(account["balances"])}')

for balance in account['balances']:
    asset_type = balance['asset_type']
    amount = balance['balance']
    print(f'{asset_type}: {amount}')

# Get recent transactions
txs = server.transactions().for_account('GABC123...').limit(10).call()
print(f'Recent transactions: {len(txs["_embedded"]["records"])}')
💻

Submit Payment Transaction:

const StellarSdk = require('stellar-sdk');
const server = new StellarSdk.Server('https://rpc.crypto-chief.com/stellar/YOUR_API_KEY');

// Load source account
const sourceKeys = StellarSdk.Keypair.fromSecret('S...');
const sourceAccount = await server.loadAccount(sourceKeys.publicKey());

// Build payment transaction
const transaction = new StellarSdk.TransactionBuilder(sourceAccount, {
  fee: StellarSdk.BASE_FEE, // 0.00001 XLM
  networkPassphrase: StellarSdk.Networks.PUBLIC
})
  .addOperation(
    StellarSdk.Operation.payment({
      destination: 'GDEST123...',
      asset: StellarSdk.Asset.native(),
      amount: '10'
    })
  )
  .setTimeout(30)
  .build();

// Sign and submit
transaction.sign(sourceKeys);
const result = await server.submitTransaction(transaction);
console.log('Payment successful:', result.hash);

Stellar Best Practices

  • Memo Usage: Always include memos for exchange deposits
  • Asset Issuance: Understand trust lines for custom assets
  • Pathfinding: Leverage built-in DEX for currency conversion
  • Fee Management: Monitor base fee (currently 0.00001 XLM)
  • Account Minimums: Maintain 1 XLM minimum balance
  • Testing: Test on Stellar testnet before mainnet

Why choose us?

Payments infrastructure

Payment-Optimized

Infrastructure purpose-built for payments delivering <65ms latency with 3-5s finality.

Financial Grade

Enterprise infrastructure supporting real money movement with 99.99% uptime and compliance features.

Payment Analytics

Monitor transaction volumes, currency flows, DEX activity, asset issuance, and network health.

Global Payment Network

Infrastructure optimized for worldwide payment operations and cross-border transactions.

Volume Scaling

Infrastructure designed to handle billions in payment volume serving millions of users.

Payments Experts

24/7 support from engineers familiar with Stellar, Horizon API, and payment system integration.

Examples of Use

Build payment solutions

Stellar's payment focus and proven infrastructure enable remittance systems, asset tokenization, and financial services for global users.

Remittance Services

Build cross-border payment systems with instant settlement and minimal fees. Enable money transfer for unbanked populations.

Asset Tokenization

Tokenize real-world assets like currencies, securities, commodities on Stellar's compliant infrastructure.

Banking Integration

Connect traditional banks to blockchain through Stellar's payment rails and anchor system.

Currency Exchange

Build forex and currency exchange platforms leveraging Stellar's built-in DEX and pathfinding.

Payment Wallets

Create multi-currency wallets with instant send/receive, automatic conversion, and minimal fees.

Investment Platforms

Launch investment products on Stellar like Franklin Templeton's tokenized money market fund.

Got questions?
we are here to help

Stellar is a blockchain purpose-built for payments with 3-5s finality, near-zero fees, and native multi-currency support.

Both focus on payments, but Stellar is fully decentralized and open-source, while Ripple is more centralized and enterprise-focused.

XLM (Lumens) is Stellar's native token used for transaction fees (0.00001 XLM) and anti-spam protection.

Stellar transactions cost 0.00001 XLM (approximately $0.000001 USD) — essentially free.

Stellar uses SCP (Stellar Consensus Protocol), a Federated Byzantine Agreement system achieving consensus without mining or staking.

Yes! Stellar makes asset issuance simple. Create custom tokens representing currencies, commodities, securities, or anything else.

Anchors are entities that hold deposits and issue corresponding credits on Stellar, enabling real-world currency bridging.

Stellar has limited smart contract functionality (Soroban). It's optimized for payments, not general computation.

MoneyGram (remittances), Circle (USDC), Franklin Templeton (tokenized fund), and many fintech companies use Stellar for payments.

Yes, we provide Horizon API access to both Stellar public network (mainnet) and testnet.

Pricing that grows with your needs.

Free

Start building on Web3 — no credit card.

$0
  • 5 reqs/sec RPC
  • 5 reqs/min Unified API
  • Ultimate chains
  • WSS, Statistics
  • Community support

Pay for use

Flexible pay-as-you-go for any workload.

From $10
  • 400 reqs/sec RPC
  • 300 reqs/min Unified API
  • 10 reqs/min AML
  • EventStream
  • Ultimate chains
  • WSS, Whitelists, Statistics
  • Support portal

Subscription

From $500 monthly plus 20% extra value.

From $500
  • 700 reqs/sec RPC
  • 500 reqs/min Unified API
  • 5 reqs/sec AML
  • EventStream
  • Ultimate chains
  • WSS, Whitelists, Statistics
  • Support portal

Enterprise

Tailored solution for expert builders

Custom terms

All Subscription features plus:

  • Flexible rate limits
  • Engineering team support
  • Custom SLA
  • Personal manager