with Stablecoin-Native USDC/EURC Operations
This node provides full Stellar Soroban RPC access plus native stablecoin operations for USDC and EURC on the Stellar network. Submit fee-sponsored transactions, activate new accounts, and query transaction status. This is a public beta and this server may be subject to frequent upgrades. Payments are final. By using this service, you accept all risks and liabilities associated with its use.
This node offers both standard Stellar RPC functions via pass-through routes and a Stablecoin-Native UX for seamless fee-sponsored transactions.
The Docker image for this server is available as apicharge/apicharge-stellar-rpc:mainnet on Docker Hub, enabling anyone to become a monetising Stellar gatewayβoffer your own datacenter capacity to help build a USDC-native platform for all while earning.
Management tools are available in the downloads section below.
Full Soroban smart contract and classic transaction support via JSON-RPC
Submit zero-fee inner transactions with automatic fee bump wrapping
Create accounts with XLM base reserve and USDC/EURC trustlines pre-configured
# RPC Passthrough - No fee sponsorship, standard JSON-RPC calls
# pip install stellar-sdk requests
import requests, json
from stellar_sdk import Keypair
SERVER = "https://mainnet.stellar.apicharge.com"
SECRET_KEY = "YOUR_SECRET_KEY" # Replace with your key
keypair = Keypair.from_secret(SECRET_KEY)
# 1. Get quote for RPC access
quotes = requests.get(f"{SERVER}/apicharge/quote").json()
rpc_quote = next(q for q in quotes["quotes"]
if "stellar-rpc-developer" in q["signableEntity"]["routeId"])
# 2. Purchase access token (see full example for details)
token = purchase_access_token(SERVER, rpc_quote, keypair)
# 3. Make RPC calls via passthrough route
rpc_request = {
"jsonrpc": "2.0",
"id": 1,
"method": "getHealth"
}
response = requests.post(
f"{SERVER}/soroban/developer/",
headers={"apicharge": token, "Content-Type": "application/json"},
json=rpc_request
)
print(response.json()) # {"jsonrpc": "2.0", "result": {"status": "healthy"}, ...}
RPC Passthrough
Standard Stellar JSON-RPC access without fee sponsorship. Use for:
Route: /soroban/developer/
Powered by ApiCharge
View OpenAPI documentation for programmatic integration
/apicharge/stablecoin/activate-account
/apicharge/stablecoin/get-transaction-status
/soroban/{**catch-all}
/apicharge/stablecoin/{action:regex(^(prepare-soroban-transaction|submit-transaction)$)}
/apicharge/stablecoin/submit-soroban-transaction
For direct API access management, install the ApiCharge desktop application:
Mobile and smart device applications (coming soon):