-
Notifications
You must be signed in to change notification settings - Fork 0
Integration Guide
Satelink Network edited this page May 18, 2026
·
1 revision
How to route traffic to Satelink (for machines and developers).
Replace your current RPC URL with:
| Network | URL | Status |
|---|---|---|
| Polygon Amoy (testnet) | https://rpc.satelink.network/rpc/amoy |
Live |
| Polygon Mainnet | https://rpc.satelink.network/rpc/polygon |
Coming Soon |
curl -X POST https://rpc.satelink.network/rpc/amoy \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'Expected response:
{"jsonrpc":"2.0","result":"0x...","id":1}| Chain | Endpoint Path | Chain ID |
|---|---|---|
| Polygon Amoy | /rpc/amoy |
80002 |
| Polygon | /rpc/polygon |
137 |
| Ethereum | /rpc/ethereum |
1 |
| Arbitrum | /rpc/arbitrum |
42161 |
| Base | /rpc/base |
8453 |
- 100 requests/day limit
- No authentication required
- Ideal for testing and light usage
# Get an API key
curl -X POST https://api.satelink.network/api/builder/keys \
-H "Authorization: Bearer <your-jwt>"
# Use the API key
curl -X POST https://rpc.satelink.network/rpc/amoy \
-H "Content-Type: application/json" \
-H "x-api-key: sk_..." \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'Get current pricing:
curl https://api.satelink.network/api/pricingExample response:
{
"ok": true,
"provider": "Satelink",
"pricing": {
"rpc": {
"eth_blockNumber": 0.000001,
"eth_call": 0.000015,
"eth_sendRawTransaction": 0.0001
},
"model": "pay_per_use",
"minimum_deposit_usdt": 1.0,
"settlement": "USDT on Polygon"
}
}Check network health:
curl https://api.satelink.network/api/statusSatelink is listed on Chainlist.org. Add Satelink as a custom RPC in MetaMask or any wallet by searching for "Satelink" on Chainlist.
npm install @satelink/sdk
const { SatelinkRPC } = require('@satelink/sdk');
const rpc = new SatelinkRPC({
apiKey: 'sk_...',
chain: 'amoy'
});
const block = await rpc.getBlockNumber();
console.log('Current block:', block);- Documentation: https://docs.satelink.network
- Discord: https://discord.gg/satelink
- Email: satelinknetwork@gmail.com