The Daily Lesson
Today's lessonPricingDevelopersSchoolsLog inSign up
Developers

Orb APIs for the agent era.

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.

API key

Paste a provisioned key to pre-fill the examples below (stored only in this browser tab).

Get an API keyRead the docs

Quick start

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());

Product docs

Word Orb overviewLesson Orb overviewQuiz Orb overviewFull documentation hubMCP server setup

MCP one-liner

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"