Agenticfeed Standard v0.3.0
This release simplifies the Agent Query API, removes external dependencies, and clarifies the pricing model.
What's changed
Agent Query API (breaking change)
- API now uses Agenticfeed's internal matching engine exclusively — callers no longer need to provide their own Anthropic API key
- Authentication simplified to a single Agenticfeed API key (Bearer token)
- API is now included with all paid subscription tiers (Growth, Scale, Enterprise)
- Merchants can instantly generate keys in their dashboard — no approval process
Why
- Developers integrating with Agenticfeed can now use the API without setting up external AI accounts
- Transparent pricing: no hidden per-query costs, everything included in the subscription
- Simpler onboarding and documentation
- Agenticfeed becomes a complete, self-contained platform rather than a data layer
Migration guide
If you are already using the Agent Query API with v0.2.0:
Before (v0.2.0):
{
"query": "ergonomic chair for back pain",
"anthropic_api_key": "sk-ant-your-key",
"customer_guid": "a9a8378c94"
}After (v0.3.0):
{
"query": "ergonomic chair for back pain",
"customer_guid": "a9a8378c94"
}Remove the anthropic_api_key field entirely. The request now only requires your Agenticfeed API key in the Authorization header.
New Documentation
- Full API documentation with updated examples: agenticfeed.ai/api.html
- Developer blog post: Introducing the Agenticfeed Agent Query API
For the full standard specification, see README.md.