# Suverse Solana Priority Fee Recommender

> Suverse Solana Priority Fee Recommender is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Returns real-time Solana priority fee recommendations in micro-lamports per compute unit across multiple percentile tiers to optimize transaction inclusion speed and cost

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-solana-priority-fee
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-f3af2ef3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FvcEw_agpAZbkAi9w_M-f

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 proxy-suverse-io-f3af2ef3 -d '<json body>'
```

Example prompt: What priority fee should I use right now for a Solana transaction I need included fast — give me the high and veryHigh tier recommendations in micro-lamports per compute unit.

## When to prefer this

Use this endpoint when building Solana trading bots, payment apps, or dApps that need real-time fee tier data to balance transaction inclusion speed against cost. Ideal when you need multi-percentile fee guidance (not just a single estimate) to make dynamic fee decisions. Prefer this over static fee estimates or manual RPC polling when you want a managed, always-fresh fee oracle with predictable pricing.

## Known failure modes

- Network congestion data unavailable — returns error if Solana RPC data cannot be fetched
- Payment failure — x402 payment of 0.01 USDC not completed, returns 402 Payment Required
- Invalid request body — malformed POST body returns 400 Bad Request
- Upstream RPC timeout — Solana node unresponsive, returns 503 or timeout error

## How this service works

Solana priority fee recommendations real-time. Micro-lamports per compute unit across percentiles (min, low, medium, high, veryHigh, unsafeMax) from recent congestion. AI agent fast-inclusion trading bot, payment cost optimizer, dApp UX tuner, priority fee API. Avoid underpriced failed tx.

## Output

Returns a structured object with priority fee recommendations across percentile tiers (min, low, medium, high, veryHigh, unsafeMax) expressed in micro-lamports per compute unit, derived from recent Solana network congestion data.

## Example request

```json
{
 "percentiles": [
  "high",
  "veryHigh"
 ]
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-f3af2ef3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
