Feed Type โ pricing.llmfeed.json
๐ฐ pricing.llmfeed.json
The pricing
feed type describes how a service exposes its pricing, economic model, and payment compatibility โ in a format interpretable by agents, copilots, and LLM interfaces.
It complements:
- ๐ง
capabilities.llmfeed.json
: what an agent can do - ๐ชช
credential.llmfeed.json
: how it authenticates - ๐
agent-behaviour_*
: when consent or cost awareness is needed
โจ Why it matters
Agents need to evaluate and communicate:
- Cost of invoking a capability
- Billing models (pay-as-you-go, subscriptions)
- Supported currencies and payment methods
- Cost per unit vs. bundled limits
- Trial conditions and overruns
- Trust level of the pricing itself
๐งฑ Canonical structure
{
"feed_type": "pricing",
"metadata": {
"title": "API Pricing for Document Conversion",
"origin": "https://convertapi.example.com",
"description": "Pricing details for various document conversion capabilities.",
"generated_at": "2025-05-21T14:30:00Z"
},
"pricing_models": [
{
"model_id": "pay-as-you-go",
"name": "Pay-as-you-go",
"type": "on-demand",
"currency": "USD",
"description": "Standard pricing per conversion.",
"capabilities_cost": [
{
"capability_name": "convertPdfToText",
"cost_per_unit": 0.01,
"unit": "page"
}
]
},
{
"model_id": "monthly-pro",
"name": "Pro Monthly",
"type": "subscription",
"currency": "USD",
"price": 29.99,
"billing_period": "month",
"included_units": [
{ "capability_name": "convertPdfToText", "quantity": 1000, "unit": "page" }
],
"additional_cost_per_unit": {
"convertPdfToText": { "cost": 0.005, "unit": "page" }
}
}
],
"payment_methods": ["credit_card", "paypal", "agent_wallet"],
"terms_and_conditions_url": "https://convertapi.example.com/terms#pricing",
"trust": {
"signed_blocks": ["metadata", "pricing_models", "payment_methods", "trust"],
"scope": "all"
}
}
๐ค Agent Use Cases
- ๐งฎ Compare multiple providers for the same
capability
- ๐งพ Inform users of estimated cost before triggering
- ๐ฆ Evaluate trial options or fallback if over quota
- ๐ฐ Enforce cost-consent for premium flows
๐ Related blocks
capabilities.llmfeed.json
โ with cost-ref capabilitiescredential.llmfeed.json
โ declares quota/rate_limitsagent-behaviour_human-consent
โ should be linked when pricing is >0trust.signed_blocks
โ to ensure auditability of advertised prices
๐ Future outlook
When adopted, this block enables a true agent economy โ where decision-making agents can route calls based not just on access, but on cost-efficiency and financial trust.