Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.satelink.network/llms.txt

Use this file to discover all available pages before exploring further.

Quick Start — Satelink RPC

Get your first RPC call running in 2 minutes.

Step 1: Get API Key

Visit app.satelink.network/plans or create via API:
curl -X POST https://rpc.satelink.network/api/keys \
  -H "Content-Type: application/json" \
  -d '{"tier":"free"}'
Response:
{
  "ok": true,
  "api_key": "sk_free_abc123def456",
  "tier": "free",
  "daily_limit": 200,
  "example": "curl -X POST https://rpc.satelink.network/rpc/polygon -H 'X-API-Key: sk_free_abc123def456' ..."
}

Step 2: Make Your First Call

curl -X POST https://rpc.satelink.network/rpc/polygon \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
Response:
{"jsonrpc":"2.0","id":1,"result":"0x3a4b5c6"}

Step 3: Check Your Usage

curl https://rpc.satelink.network/api/keys/YOUR_API_KEY/usage
Response:
{
  "ok": true,
  "tier": "free",
  "daily_limit": 200,
  "used_today": 1,
  "remaining": 199,
  "reset_at": "2026-05-19T00:00:00Z"
}

Supported Chains

ChainEndpointChain ID
Polygon/rpc/polygon137
Polygon Amoy/rpc/polygon-amoy80002
Ethereum/rpc/ethereum1
Arbitrum/rpc/arbitrum42161
Base/rpc/base8453

Rate Limits

TierDaily LimitPrice
Free200/day$0
Basic10,000/day$9/month
Pro100,000/day$49/month
Enterprise1,000,000/day$199/month

Upgrade to Paid Tier

  1. Get deposit address: GET /api/keys/YOUR_KEY/deposit-info
  2. Send USDT to treasury on Polygon
  3. Submit TX hash: POST /api/keys/YOUR_KEY/deposit
  4. Instant upgrade — no waiting

Next Steps