Get the current NEO token price via a pay-per-call x402 endpoint on Base for $0.02 per request.
What it does
This endpoint returns the current price of the NEO token. It is part of a broader suite of APIs hosted at lowpaymentfee.com, which covers data analytics, AI/ML inference, finance/Web3 market data, and utility services. All endpoints on the platform follow the same pricing model: $0.02 per request, paid via the x402 protocol using USDC on the Base network.
The specific endpoint at `/api/v1/tokens/NEO/price` accepts POST requests and returns JSON. Payment is handled inline via the X-PAYMENT header — no API keys, accounts, or rate limits are required. The x402 challenge confirms the endpoint is live, accepting USDC (contract 0x8335…2913) on Base with a max amount of 20,000 base units (i.e., $0.02 given USDC's 6 decimals). The payment is sent to address 0x1A2B13E97f5F837C8F9FA1F95a1484B7C70d85F3 with a 300-second timeout.
Documentation beyond the landing page is extremely sparse — the /docs, /pricing, /api, and /README pages all render only a "Connect wallet" prompt with no additional technical detail. There is no OpenAPI spec, no example request/response payloads, and no description of the response schema. The endpoint likely returns a JSON object containing the NEO token's current price, but the exact fields are unknown.
Capabilities
Use cases
- —Fetching the current NEO token price for portfolio tracking or trading bots
- —Integrating real-time NEO pricing into a DeFi dashboard
- —Agent-driven price checks where per-call micropayments replace API key management
- —Comparing NEO price across multiple data sources
Fit
Best for
- —Developers needing quick, keyless access to NEO token pricing
- —AI agents that can pay per call via x402 on Base
- —Projects that want to avoid API key management and subscription commitments
Not for
- —High-frequency trading requiring sub-second latency guarantees (no SLA documented)
- —Users who need historical NEO price data or OHLCV candles (only current price implied)
- —Anyone without a Base-compatible USDC wallet
Quick start
curl -X POST https://lowpaymentfee.com/api/v1/tokens/NEO/price \
-H "X-PAYMENT: <x402-payment-header>" \
-H "Content-Type: application/json"Endpoint
Quality
The endpoint is confirmed live via a valid x402 402 challenge, and pricing is clear ($0.02 USDC on Base). However, there is no OpenAPI spec, no documented request/response schema, no example payloads, and all documentation pages beyond the landing page are empty. The listing is essentially a stub with verified liveness and pricing.
Warnings
- —No OpenAPI or schema documentation available — response format is unknown
- —All doc/pricing/README pages return only a 'Connect wallet' prompt with no content
- —No example request or response payloads are available to verify actual output
- —The endpoint path suggests NEO token price but no confirmation of data source or update frequency
Citations
- —The endpoint returns HTTP 402 with an x402 challenge advertising USDC on Base, maxAmountRequired 20000 (=$0.02)https://lowpaymentfee.com/api/v1/tokens/NEO/price
- —All APIs on the platform are priced at $0.02 per request with no API keys, no rate limits, and instant access on Base networkhttps://lowpaymentfee.com
- —The USDC asset contract on Base is 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913https://lowpaymentfee.com/api/v1/tokens/NEO/price