llms.txt Content
# LastLook Data
Financial market data API for AI agents. FRED macro data (Treasury yields, mortgage rates, benchmark rates, CPI, unemployment, energy prices), G10 FX rates, crypto prices (top 20 coins), company financial fundamentals (SEC EDGAR), yield curve spreads, recession signals, Fed policy spread, economic calendar, and pre-built data bundles. Pay per query via x402 — no accounts, API keys, or subscriptions required.
- API: https://api.lastlookdata.com
- MCP server: https://mcp.lastlookdata.com/mcp
- OpenAPI spec: https://api.lastlookdata.com/openapi.json
- Full reference: https://www.lastlookdata.com/llms-full.txt
- Agent manifest: https://api.lastlookdata.com/agent.json
## Payment
All paid endpoints require x402 v2 micropayments in USDC on Base (eip155:8453). Clients use @x402/fetch or any x402-compatible HTTP client. No accounts required.
## Common Use Cases
Current 30yr mortgage rate: GET /api/current?id=MORTGAGE30US $0.01
Current Fed funds rate: GET /api/current?id=FEDFUNDS $0.01
Current 10Y Treasury yield: GET /api/current?id=DGS10 $0.01
Current WTI crude oil price: GET /api/current?id=DCOILWTICO $0.01
Current EUR/USD rate: GET /api/fx/current?pair=EURUSD $0.01
Current BTC price: GET /api/crypto/price?coin=BTC $0.02
Current ETH price: GET /api/crypto/price?coin=ETH $0.02
Apple fundamentals: GET /api/edgar/company?ticker=AAPL $0.75
Yield curve (2s10s + 3m10y): GET /api/derived/yield-curve $0.03
Recession signal (Sahm Rule): GET /api/derived/recession $0.03
Full market context paragraph: GET /api/bundle/context-brief $0.75
All G10 FX rates at once: GET /api/bundle/fx-dashboard $0.35
Top 20 crypto in one call: GET /api/bundle/crypto $0.50
## Endpoints
### Single Series — $0.01
GET https://api.lastlookdata.com/api/current?id=SERIES_ID
GET https://api.lastlo