The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "NotebookLM - Create Notebook, Add Source, Generate Report",
"nodes": [
{
"parameters": {},
"id": "a1b2c3d4-0004-0001-0001-000000000001",
"name": "When clicking 'Test workflow'",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"resource": "notebook",
"operation": "create",
"title": "My Research Notebook"
},
"id": "a1b2c3d4-0004-0001-0001-000000000002",
"name": "Create Notebook",
"type": "CUSTOM.notebookLm",
"typeVersion": 1,
"position": [
460,
300
],
"credentials": {
"notebookLmApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "source",
"operation": "addUrl",
"notebookId": "={{ $json.id }}",
"url": "https://example.com/article"
},
"id": "a1b2c3d4-0004-0001-0001-000000000003",
"name": "Add Source",
"type": "CUSTOM.notebookLm",
"typeVersion": 1,
"position": [
680,
300
],
"credentials": {
"notebookLmApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "artifact",
"operation": "createReport",
"notebookId": "={{ $json.notebookId }}",
"reportFormat": "briefing_doc"
},
"id": "a1b2c3d4-0004-0001-0001-000000000004",
"name": "Generate Briefing Doc",
"type": "CUSTOM.notebookLm",
"typeVersion": 1,
"position": [
900,
300
],
"credentials": {
"notebookLmApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"When clicking 'Test workflow'": {
"main": [
[
{
"node": "Create Notebook",
"type": "main",
"index": 0
}
]
]
},
"Create Notebook": {
"main": [
[
{
"node": "Add Source",
"type": "main",
"index": 0
}
]
]
},
"Add Source": {
"main": [
[
{
"node": "Generate Briefing Doc",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
notebookLmApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
NotebookLM - Create Notebook, Add Source, Generate Report. Uses CUSTOM. Event-driven trigger; 4 nodes.
Source: https://github.com/agmmnn/n8n-nodes-notebooklm-sdk/blob/master/examples/create-notebook-and-report.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
[E2E] Listing - Create, Approve, Close. Uses CUSTOM. Event-driven trigger; 9 nodes.
[E2E] Availability Exceptions - Create and Delete. Uses CUSTOM. Event-driven trigger; 7 nodes.
[E2E] Availability Exceptions - Get Many. Uses CUSTOM. Event-driven trigger; 5 nodes.