Word Orb, Lesson Orb, and Quiz Orb expose structured education data for tutors, robots, and learning products. Use Payment Links to activate production keys, then call the same surfaces we use on thedailylesson.com.
Paste a provisioned key to pre-fill the examples below (stored only in this browser tab).
cURL — today's lesson (public route)
curl -s "https://thedailylesson.com/api/lesson/today?lang=en&age=35" \ -H "Authorization: Bearer YOUR_API_KEY"
Python
import urllib.request url = "https://thedailylesson.com/api/lesson/today?lang=en&age=35" req = urllib.request.Request(url) print(urllib.request.urlopen(req).read().decode())
JavaScript
const r = await fetch("https://thedailylesson.com/api/lesson/today?lang=en&age=35");
console.log(await r.json());Configure the Word Orb MCP server in Claude or ChatGPT using the URL published on wordorb.ai — copy the remote MCP endpoint from the docs after you have an API key.
# Example shape — replace with your issued URL + key from wordorb.ai/mcp mcp remote add word-orb https://wordorb.ai/mcp --header "Authorization: Bearer YOUR_API_KEY"