x402 List

x402 Protocol Service Directory

Lotus Network API

Data

Five pay-per-call services on Base: FLUX image generation, PDF-to-Markdown conversion, and an auditable gas forecasting loop (preflight, decision journal, and on-chain audit). Priced $0.002 to $0.05 per call in USDC. No API key, account, or subscription.

Pay from $0.002 to $0.08 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

listed 2026-08-03 · no on-chain settlement recorded yet

BASE URL https://lotusnetworkapi.com WEBSITE https://lotusnetworkapi.com ENDPOINTS 4 NETWORK Base ASSET USDC MEMBER SINCE 2026-08-03 MONITORED SINCE 2026-08-03

ASSESSMENT

updated 2h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 100%
uptime 24h
-
uptime 7d
-
uptime 30d
-
uptime 90d
-
response p95
203ms
avg response
203ms
total checks
1
compliance A (14/14)

14 of 14 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.002 to $0.08 (p24 in Data)
price (min)
$0.002
price (max)
$0.08
category percentile (min)
p24 in Data
category percentile (max)
p73 in Data
endpoints / prices
4 / 4
model
tiered
stability
0%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

domain age
3d
registrar
Cloudflare, Inc.
hosting
custom
domain created
2026-07-30

Identity facts, not a risk score.

traction $0 30d · 0 buyers
volume 30d
$0
buyers 30d
0
settlements 30d
0
first settlement
---
last settlement
---
top buyer share
-
trend 7d vs 30d
-
networks
eip155:8453
volume all-time
$0
settlements all-time
0
median settlement 30d
$0
max settlement 30d
$0
settled via
-

Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.

Top buyer share is a concentration signal, not part of the ranking score.

WHAT IT DOES

ai-derived

The Lotus Network API provides various AI-powered services including image generation, video generation, audio/video transcription, PDF-to-Markdown conversion, and gas forecasting on the Base blockchain.

category
ai-services
in
query params and body
auth
none
image-generationvideo-generationtranscriptionpdf-conversiongas-forecastingai-services

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET
POST /api/v1/gas/decision $0.003 Base USDC
GET /api/v1/gas/preflight $0.002 Base USDC
GET /api/v1/generate-image $0.08 Base USDC
POST /api/v1/pdf-to-markdown $0.005 Base USDC
4 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to GET /api/v1/gas/preflight returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i 'https://lotusnetworkapi.com/api/v1/gas/preflight'
// 402 response (captured by monitor) · 4 payloads · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x3268C9434D8603957420f04510CA0ff6097A5C64",
        "amount": "80000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://lotusnetworkapi.com/api/v1/generate-image",
      "mimeType": "application/json",
      "description": "Text-to-image generation powered by FLUX.2 [pro]. Send a prompt, get back a 1024x1024 image as base64 JSON or raw bytes, plus a durable direct URL. No API key or account needed."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "GET",
            "queryParams": {
              "prompt": "a cyberpunk city skyline at dusk, neon reflections"
            }
          },
          "output": {
            "type": "json",
            "example": {
              "image": "<base64-encoded image bytes>",
              "model": "black-forest-labs/flux-2-pro",
              "prompt": "a cyberpunk city skyline at dusk, neon reflections",
              "success": true,
              "mimeType": "image/webp",
              "absoluteUrl": "https://lotusnetworkapi.com/api/v1/image/9f2c4a1e7b3d5f8091a2b3c4d5e6f708"
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method"
              ],
              "properties": {
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "queryParams": {
                  "type": "object",
                  "required": [
                    "prompt"
                  ],
                  "properties": {
                    "format": {
                      "enum": [
                        "json",
                        "binary"
                      ],
                      "type": "string"
                    },
                    "prompt": {
                      "type": "string",
                      "description": "Text description of the image to generate"
                    }
                  }
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "properties": {
                    "image": {
                      "type": "string",
                      "description": "Base64-encoded image"
                    },
                    "model": {
                      "type": "string"
                    },
                    "prompt": {
                      "type": "string"
                    },
                    "success": {
                      "type": "boolean"
                    },
                    "mimeType": {
                      "type": "string"
                    },
                    "absoluteUrl": {
                      "type": "string"
                    },
                    "downloadUrl": {
                      "type": "string"
                    },
                    "retentionDays": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x3268C9434D8603957420f04510CA0ff6097A5C64",
        "amount": "5000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://lotusnetworkapi.com/api/v1/pdf-to-markdown",
      "mimeType": "application/json",
      "description": "Extracts text from a PDF and returns clean Markdown: unwrapped paragraphs, detected headings and bullet lists, no page furniture. Accepts a public PDF URL or base64 bytes. Built for agents that need to read documents they cannot parse natively."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "url": "https://example.com/whitepaper.pdf"
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "pages": 12,
              "title": "Quarterly Report",
              "success": true,
              "markdown": "# Quarterly Report\n\nRevenue grew 14% year over year...",
              "characters": 18432
            }
          }
        },
        "schema": {
          "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": {
                    "pdf": {
                      "type": "string"
                    },
                    "url": {
                      "type": "string"
                    },
                    "pageMarkers": {
                      "type": "boolean"
                    }
                  }
                },
                "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",
                  "properties": {
                    "pages": {
                      "type": "number"
                    },
                    "title": {
                      "type": "string"
                    },
                    "success": {
                      "type": "boolean"
                    },
                    "markdown": {
                      "type": "string"
                    },
                    "characters": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x3268C9434D8603957420f04510CA0ff6097A5C64",
        "amount": "2000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://lotusnetworkapi.com/api/v1/gas/preflight",
      "mimeType": "application/json",
      "description": "Read-only Base L2 gas conditions computed directly from chain data: current base fee, recent percentiles, realised volatility, congestion state, and an 80% forecast range for a chosen horizon. This is supporting context for timing a transaction, not a trade instruction. Every figure is reproducible from public Base RPC data."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "GET",
            "queryParams": {
              "horizonMinutes": 5
            }
          },
          "output": {
            "type": "json",
            "example": {
              "block": 24881003,
              "chain": "base-mainnet",
              "recent": {
                "blocks": 300,
                "p10Gwei": 0.0119,
                "p90Gwei": 0.0181,
                "medianGwei": 0.0138,
                "volatility": 0.041
              },
              "current": {
                "congestion": "calm",
                "baseFeeGwei": 0.0142,
                "gasUsedRatio": 0.31
              },
              "success": true,
              "forecast": {
                "method": "mean-reverting log random walk on realised block volatility",
                "lowGwei": 0.0106,
                "highGwei": 0.0182,
                "interval": 0.8,
                "centerGwei": 0.0139,
                "targetBlock": 24881153,
                "horizonMinutes": 5
              },
              "observedAt": "2026-07-30T04:12:00.000Z"
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method"
              ],
              "properties": {
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "queryParams": {
                  "type": "object",
                  "properties": {
                    "horizonMinutes": {
                      "type": "integer",
                      "description": "Forecast horizon in minutes (1-60)"
                    }
                  }
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "properties": {
                    "block": {
                      "type": "number"
                    },
                    "chain": {
                      "type": "string"
                    },
                    "recent": {
                      "type": "object",
                      "description": "medianGwei, p10Gwei, p90Gwei, volatility, blocks"
                    },
                    "current": {
                      "type": "object",
                      "description": "baseFeeGwei, congestion, gasUsedRatio"
                    },
                    "success": {
                      "type": "boolean"
                    },
                    "forecast": {
                      "type": "object",
                      "description": "centerGwei, lowGwei, highGwei, targetBlock, interval"
                    },
                    "observedAt": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x3268C9434D8603957420f04510CA0ff6097A5C64",
        "amount": "3000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://lotusnetworkapi.com/api/v1/gas/decision",
      "mimeType": "application/json",
      "description": "Records an agent decision (execute now, or wait) against a fresh forecast snapshot and returns a decision_id plus the block at which the outcome becomes checkable. Nothing is predicted here beyond the snapshot: this is a tamper-evident journal entry so the agent can later prove what it knew and what it chose."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "stance": "wait",
              "maxFeeGwei": 0.012,
              "horizonMinutes": 15
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "stance": "wait",
              "success": true,
              "auditUrl": "https://lotusnetworkapi.com/api/v1/gas/audit/7c1f9a2b4d6e8f0a1b2c3d4e5f607182",
              "snapshot": {
                "lowGwei": 0.0106,
                "highGwei": 0.0182,
                "baseFeeGwei": 0.0142
              },
              "decisionId": "7c1f9a2b4d6e8f0a1b2c3d4e5f607182",
              "recordedAt": "2026-07-30T04:12:00.000Z",
              "auditableAt": "2026-07-30T04:27:00.000Z",
              "targetBlock": 24881453
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "required": [
                    "stance"
                  ],
                  "properties": {
                    "note": {
                      "type": "string"
                    },
                    "stance": {
                      "enum": [
                        "execute",
                        "wait"
                      ],
                      "type": "string"
                    },
                    "maxFeeGwei": {
                      "type": "number"
                    },
                    "horizonMinutes": {
                      "type": "integer"
                    }
                  }
                },
                "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",
                  "properties": {
                    "stance": {
                      "type": "string"
                    },
                    "success": {
                      "type": "boolean"
                    },
                    "auditUrl": {
                      "type": "string"
                    },
                    "snapshot": {
                      "type": "object"
                    },
                    "decisionId": {
                      "type": "string"
                    },
                    "recordedAt": {
                      "type": "string"
                    },
                    "auditableAt": {
                      "type": "string"
                    },
                    "targetBlock": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  }
]

OVER TIME

All charts share the 30d window selected here. Every series is also served as JSON at /api/v1/services/lotus-network-api/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

UPTIME
08-03 · uptime 100.0% · 231ms avg08-0308-03
30d UPTIME 100%
RESPONSE TIME
08-03 · 231ms avg08-03 · 231ms avg08-0308-03
AVG RESP 238ms
PRICE (captured 402, USD)
building price history ($0.004)

Median across 4 endpoints. Use the selector to isolate one.

SUB-SCORES (uptime + x402 compliance)
building assessment history (1 day so far)
VOLUME (on-chain settlement, USD)
no on-chain volume yet
DISTINCT BUYERS
no distinct buyers yet

COMPLIANCE

14/14 checks pass · grade A
  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS
  • declares the current x402 version (2)
  • EIP-712 domain parameters present on every EVM entry
  • x402 v2 envelope delivered in the payment-required header

SITE PILLARS

  • homepage reachable
  • openapi doc
  • pricing page
  • llms.txt
  • robots.txt
  • terms page
recent checks (8) · click to expand
TIME STATUS RESP
● OK 275ms
● OK 294ms
● OK 181ms
● OK 273ms
● OK 212ms
● OK 276ms
● OK 189ms
● OK 203ms

EMBED THIS BADGE

Show that Lotus Network API is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

Lotus Network API listed on x402-list
status
Lotus Network API uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/lotus-network-api?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/lotus-network-api.svg" alt="Lotus Network API listed on x402-list" height="28">
</a>
// Markdown
[![Lotus Network API on x402-list](https://x402-list.com/badge/lotus-network-api.svg)](https://x402-list.com/services/lotus-network-api?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/lotus-network-api?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/lotus-network-api.svg?data=uptime" alt="Lotus Network API uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]