Get the current stock price for GOOGL via a pay-per-call x402 endpoint on Base.
What it does
This endpoint returns the current stock price for GOOGL (Alphabet/Google) as JSON, accessed through the x402 payment protocol on the Base network. Each request costs $0.02 in USDC, settled on-chain with no API keys, subscriptions, or rate limits required. The caller simply includes an X-PAYMENT header with a valid x402 payment proof and receives the data in response.
The endpoint is part of a broader suite of APIs offered at lowpaymentfee.com, which spans data analytics, AI/ML inference, finance/crypto market data, and utility services — all priced uniformly at $0.02 per request. The specific endpoint `/api/v1/stocks/GOOGL/price` is a POST endpoint that returns stock price information for the GOOGL ticker. The x402 challenge confirms the endpoint is live, accepts USDC (contract 0x8335…2913) on Base, and requires a maximum payment of 20,000 base units (i.e., $0.02 given USDC's 6 decimals).
Documentation beyond the landing page is sparse — the /docs, /pricing, and /README pages all resolve to a minimal "Connect wallet" prompt with no further technical detail. There is no OpenAPI spec, no example request/response payloads, and no description of the response schema. The endpoint appears functional based on the 402 challenge, but the exact shape of the returned stock price data must be inferred.
Capabilities
Use cases
- —Fetching the latest GOOGL stock price for a trading bot or portfolio tracker
- —Integrating real-time equity pricing into an AI agent's decision pipeline
- —Building a dashboard that pulls stock prices without managing API keys or subscriptions
Fit
Best for
- —Agents or bots that need on-demand stock prices without signup
- —Developers who prefer crypto-native pay-per-call billing over subscription APIs
- —Low-volume or sporadic stock price lookups where $0.02/call is cost-effective
Not for
- —High-frequency trading requiring sub-millisecond latency and bulk data
- —Historical stock price data or OHLCV candle retrieval
- —Users who need stock prices for tickers other than GOOGL (this endpoint is ticker-specific)
Quick start
curl -X POST https://lowpaymentfee.com/api/v1/stocks/GOOGL/price \
-H "X-PAYMENT: <x402-payment-proof>" \
-H "Content-Type: application/json"Endpoint
Quality
The x402 challenge is live and confirms pricing, network, and asset details. However, there is no OpenAPI spec, no documented request/response schema, no example payloads, and the docs pages are effectively empty. The actual response format for the stock price data is unknown.
Warnings
- —No OpenAPI or schema documentation available — response format is unknown
- —Docs, pricing, and README pages all return only a 'Connect wallet' prompt with no technical content
- —No example request or response payloads are provided anywhere
- —Endpoint is ticker-specific (/stocks/GOOGL/price); availability of other tickers is unconfirmed
Citations
- —Endpoint returns HTTP 402 with x402 challenge, confirming it is live and accepts USDC on Basehttps://lowpaymentfee.com/api/v1/stocks/GOOGL/price
- —Max amount required is 20,000 base units of USDC (6 decimals) = $0.02 per requesthttps://lowpaymentfee.com/api/v1/stocks/GOOGL/price
- —All APIs on the platform are priced at $0.02 per request with no API keys, no rate limits, and instant accesshttps://lowpaymentfee.com
- —USDC asset contract is 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base networkhttps://lowpaymentfee.com/api/v1/stocks/GOOGL/price