# BizIntel API – Solana Network Fees

> BizIntel API – Solana Network Fees is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the current recommended priority fee in microLamports for Solana transactions, with confidence level and support status.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/finance/fees-solana
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-solana-network-fees-885392fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ViGUf3jwrPRwK-F0MzMrZ

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 bizintel-api-solana-network-fees-885392fa -d '<json body>'
```

Example prompt: What's the current recommended Solana priority fee in microLamports — I need to set the right fee for a transaction I'm about to submit on Solana mainnet.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call lookup of Solana priority fees without managing API keys. It is ideal for AI agents that sporadically need fee estimates and prefer micro-payment billing over subscription APIs. Prefer it over manual RPC queries when you want a pre-processed, confidence-labeled fee recommendation rather than raw chain data.

## Known failure modes

- Empty or malformed request body may return a 400 error
- If Solana fee data is unavailable, confidence may be 'low' or supported may be false
- x402 payment failure if USDC balance is insufficient on Base
- Stale data if the data_as_of timestamp is outdated
- Network timeout from the Cloudflare Worker host

## How this service works

Fetches recent prioritization fees from the Solana Mainnet RPC.

## Output

Returns a JSON object with the recommended priority fee in microLamports (e.g. 150000), a confidence level (e.g. 'high'), a boolean indicating whether the fee type is supported, a data timestamp (e.g. '2026-06'), any warnings, and a disclaimer that the data is informational only.

## 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": {
     "type": "object",
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "priorityFeeMicroLamports": 150000
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-solana-network-fees-885392fa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
