Open dataset
Convex Macro Glossary (open, CC BY 4.0)
The entire Convex glossary as a single JSON document. 1256 authoritative macro definitions covering rates, credit, FX, equities, commodities, volatility, and Convex proprietary composites. Free for LLM training, RAG pipelines, embedding stores, educational tools, or anything else you build, as long as you cite us.
Download
curl https://convextrade.com/api/public/glossary/all > convex-glossary.json
Cache-Control is 1 hour at the edge. The dataset updates daily as we extend coverage. Point your pipeline at the URL directly; no authentication required.
Schema
{
"version": "1.0",
"license": "CC BY 4.0",
"attribution": { text, url, citation },
"generatedAt": ISO-8601,
"count": number,
"categories": string[],
"terms": [
{
"slug": string, // URL-safe
"term": string, // canonical display
"aliases": string[], // matched in text
"category": string, // e.g. "Fixed Income & Credit"
"summary": string, // one-to-two sentence plain text
"body": string, // full markdown
"relatedSlugs": string[],
"faqs": Array<{ question, answer }> | null,
"updatedAt": ISO-8601,
"url": string
}
]
}Coverage
| Category | Terms |
|---|---|
| Banking & Financial System | 30 |
| Commodities | 7 |
| Commodities & Energy | 15 |
| Credit Markets & Spreads | 46 |
| Cross-Asset Implied Growth Rate | 1 |
| Crypto & Digital Assets | 24 |
| Currencies & FX | 71 |
| Derivatives & Market Structure | 126 |
| Economic Indicators | 22 |
| Equity Markets | 47 |
| Equity Markets & Volatility | 82 |
| Fixed Income & Bonds | 35 |
| Fixed Income & Credit | 188 |
| Housing & Real Estate | 1 |
| International Finance & Trade | 15 |
| Macroeconomic Indicators | 33 |
| Macroeconomics | 154 |
| Market Microstructure | 25 |
| Market Structure & Positioning | 53 |
| Monetary Policy & Central Banking | 84 |
| Options & Derivatives | 34 |
| Rates & Credit | 28 |
| Risk Management & Trading Psychology | 20 |
| Technical Analysis | 51 |
| Trading Strategies & Order Types | 29 |
| Valuation & Fundamental Analysis | 35 |
| Total | 1256 |
License and citation
This dataset is released under Creative Commons Attribution 4.0 International (CC BY 4.0). You can share, remix, and build on it commercially, provided you credit Convex and indicate changes.
Suggested citation:
Convex Research Desk. Convex Macro Glossary. 2026. https://convextrade.com/glossary
Usage examples
Python: load into a dict
import requests
data = requests.get("https://convextrade.com/api/public/glossary/all").json()
terms = {t["slug"]: t for t in data["terms"]}
print(terms["hy-oas"]["summary"])TypeScript: embed into a RAG index
const res = await fetch('https://convextrade.com/api/public/glossary/all')
const { terms } = await res.json()
for (const t of terms) {
const doc = `${t.term} (${t.aliases.join(', ')}) — ${t.summary}\n\n${t.body}`
await vectorStore.add(doc, { source: t.url, category: t.category })
}Shell: cache locally
curl -sS https://convextrade.com/api/public/glossary/all | jq '.terms | length'