# QuickNode JSON-RPC Proxy — Solana Devnet

> QuickNode JSON-RPC Proxy — Solana Devnet is a paid API for AI agents from x402.quicknode.com, paid per call via x402, $10/call, status unknown (last checked 2026-09-14).

Proxies JSON-RPC calls to the Solana devnet blockchain, enabling queries and transactions on the Solana test network via standard JSON-RPC 2.0 protocol.

## Facts

- Endpoint: POST https://x402.quicknode.com/solana-devnet/
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quicknode-edee0cbe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SnYxoVtFO8hYtOdy98kK6

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability quicknode-edee0cbe -d '<json body>'
```

Example prompt: Call getBalance on Solana devnet for the account address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU and tell me the current lamport balance.

## When to prefer this

Use this endpoint when you need to interact specifically with the Solana devnet network for testing, development, or staging purposes — not mainnet. Prefer this over other chains when your target application or smart contract is deployed on Solana devnet. Choose this when you need QuickNode's reliable RPC infrastructure with x402 micropayment access rather than managing your own node.

## Known failure modes

- Invalid JSON-RPC method name returns error code -32601 (method not found)
- Malformed params array returns error code -32602 (invalid params)
- Missing jsonrpc '2.0' field causes request rejection
- Payment not included or insufficient USDC triggers 402 Payment Required
- Devnet node unavailable or congested returns 503 or timeout
- Invalid account address format returns parse error

## How this service works

JSON-RPC proxy — solana-devnet

## Output

A JSON-RPC 2.0 response object containing the result of the requested Solana RPC method call — e.g. account info, balance in lamports, block details, transaction status, slot number — or an error object with code and message if the call failed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "jsonrpc",
  "method"
 ],
 "properties": {
  "id": {
   "type": [
    "number",
    "string"
   ],
   "description": "Request identifier"
  },
  "method": {
   "type": "string",
   "description": "JSON-RPC method name (e.g., eth_blockNumber, eth_call)"
  },
  "params": {
   "type": "array",
   "description": "Method parameters"
  },
  "jsonrpc": {
   "type": "string",
   "const": "2.0"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": [
    "number",
    "string"
   ]
  },
  "error": {
   "type": "object",
   "properties": {
    "code": {
     "type": "integer"
    },
    "message": {
     "type": "string"
    }
   }
  },
  "result": {
   "description": "RPC result (type varies by method)"
  },
  "jsonrpc": {
   "type": "string",
   "const": "2.0"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/quicknode-edee0cbe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.quicknode.com](https://www.zero.xyz/host/x402.quicknode.com/llms.txt)
