Free JSON API with 51 definitions, 17 protocols, 30 glossary terms, and cross-category analysis. CC BY-SA 4.0. No authentication required.
All 51 definitions across 6 categories with source, date, notes, and tags.
17 protocols with payment, identity, blockchain, governance, and status.
30 core terms with definitions, examples, and cross-references.
API info, endpoints, usage guidelines, citation format, and changelog.
fetch('https://agenticeconomy.dev/api/definitions.json')
.then(r => r.json())
.then(data => {
console.log(data.count + ' definitions');
console.log('Categories:', Object.keys(data.categories));
});
fetch('/api/definitions.json')
.then(r => r.json())
.then(data => {
const categoryA = data.definitions
.filter(d => d.category === 'A');
console.log(categoryA.length + ' agent-assisted definitions');
});
fetch('/api/protocols.json')
.then(r => r.json())
.then(data => {
const x402 = data.protocols.find(p => p.slug === 'x402');
console.log(x402.name + ' (Category ' + x402.category + ')');
console.log('Status:', x402.status);
});
fetch('/api/glossary.json')
.then(r => r.json())
.then(data => {
const term = data.terms
.find(t => t.term.toLowerCase() === 'settlement');
console.log(term.definition);
});
Use directly from browser JavaScript. No server-side proxy needed.
Public data. Free forever. No API keys, rate limits, or signup.
Open license. Attribution required. Share modifications under same license.
Consistent JSON schema across all endpoints. Machine-readable.
Monthly updates for definitions and protocols. Verified from primary sources.
Definitions link to protocols. Protocols cross-reference infrastructure standards.
APA Format:
Dechamps Otamendi, R. (2026). Agentic Economy Definitions, Protocols, and Standards. https://agenticeconomy.dev/api
BibTeX:
@misc{dechamps2026,
author = {Dechamps Otamendi, René},
title = {Agentic Economy Definitions, Protocols, and Standards},
year = {2026},
url = {https://agenticeconomy.dev/api}
}
Power academic research, reports, and comparative analysis with structured data on protocol design.
Reference protocol specs, payment mechanisms, and identity frameworks when designing agentic systems.
Embed definitions and glossary terms into your own knowledge management and documentation systems.
Build agent registries, decision trees, and protocol selectors using this canonical data.