New Structured Data API Provides Subscription Pricing for LLM Agents

What This Is
A developer has built a structured data API that provides normalized subscription pricing data specifically designed for LLM agents and retrieval systems. The API addresses the problem that LLMs are decent at reasoning but terrible at up-to-date subscription pricing, and scraping is brittle with constantly changing HTML and inconsistent schemas across services.
Key Details
The API normalizes subscription pricing across multiple categories:
- Streaming platforms
- Ride-share services
- Dating apps
- Other subscription-based platforms
The API exposes several key features:
- Consistent schema across providers
- Structured JSON responses
- Region-aware pricing where available
- MCP-compatible endpoints so LLMs can consume it cleanly
The goal isn't a consumer app — it's to provide a clean data layer that agents and tools can query without scraping. The developer has shared documentation at https://api.aristocles.com.au/docs for inspecting the schema and experimenting.
The developer is seeking feedback from the community on:
- Schema improvements
- Missing fields
- Better ways to expose this for agent tooling
- Whether this is useful for workflows
Who It's For
This is designed for developers building LLM agents or retrieval systems that need structured real-world pricing data without the maintenance burden of web scraping.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Claude Code LSP: Enabling Language Server Protocol for Faster, More Accurate Code Navigation
Claude Code ships without LSP enabled by default, but enabling it transforms code navigation from 30-60 second grep searches to 50ms queries with 100% accuracy. The setup requires a flag discovered through a GitHub issue rather than official documentation.

AVP Protocol Enables LLM Agents to Share KV-Cache Instead of Text for Token Efficiency
AVP (Agent Vector Protocol) allows LLM agents to pass KV-cache directly between them instead of text, reducing token processing by 73-78% and achieving 2-4x speedups across Qwen, Llama, and DeepSeek models. The protocol works with HuggingFace and vLLM connectors and is available as a Python package.

Marketing Wisdom MCP: Free Semantic Search for Startup Insights
A free MCP server provides semantic search across 6,700 insights from 1,040 episodes of My First Million and Starter Story podcasts. It offers four tools for querying founder wisdom on growth, marketing, and business strategies.

companion-capture: Tool saves Claude Code's ephemeral speech bubbles
companion-capture is an open-source tool that captures Claude Code's companion character speech bubbles before they vanish from the terminal. It saves messages to markdown files and SQLite for search, using VT100 screen buffer parsing to track cursor positions.