GET/api/keynotes
Keynotes, newest first, with takeaways, announcements and sources
- seriesEvent series id, e.g. nvidia-gtc or aws-reinvent (see /api/events)
- yearOnly keynotes from this year
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
Shell
curl -s "https://mainstage.fru.dev/api/keynotes?series=nvidia-gtc&limit=1"Sample response
JSON
{
"keynotes": [
{
"id": "nvidia-gtc-2026-jensen",
"series": "nvidia-gtc",
"year": 2026,
"title": "NVIDIA GTC 2026 Keynote",
"date": "2026-03-16",
"location": "San Jose",
"youtubeId": "jw_o0xr8MWU",
"channel": "NVIDIA",
"durationS": 8336,
"summary": "Jensen Huang opened GTC 2026 at San Jose's SAP Center by unveiling the Vera Rubin platform, the Feynman architecture roadmap, DLSS 5 and ...",
"captions": true,
"unverified": false,
"speakers": [
"jensen-huang"
],
"takeaways": [
{
"text": "The keynote opened by framing the token as the basic unit of modern AI, at NVIDIA GTC 2026, SAP Center, San Jose.",
"t": 17
},
{
"text": "Huang introduced DLSS 5, using 3D guided neural rendering for real time, photoreal 4K performance on local hardware.",
"t": 827
}
]
}
],
"speakers": [
{
"slug": "jensen-huang",
"name": "Jensen Huang",
"role": "Founder and CEO, NVIDIA",
"org": "nvidia",
"profileUrl": "https://en.wikipedia.org/wiki/Jensen_Huang",
"photo": "",
"photoCredit": ""
}
],
"total": 2,
"limit": 1,
"offset": 0,
"next": "/api/keynotes?series=nvidia-gtc&limit=1&offset=1",
"note": "Summaries of official keynote videos and recaps; watch the source for exact wording."
}