Skip to content

Agenticfeed Standard v0.3.0 — Simplified Agent Query API

Latest

Choose a tag to compare

@bluestratus bluestratus released this 10 Jun 08:20

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


For the full standard specification, see README.md.