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 - Add URL Source and Ask",
"nodes": [
{
"parameters": {},
"id": "a1b2c3d4-0002-0001-0001-000000000001",
"name": "When clicking 'Test workflow'",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"resource": "source",
"operation": "addUrl",
"notebookId": "={{ $json.notebookId }}",
"url": "https://example.com/article"
},
"id": "a1b2c3d4-0002-0001-0001-000000000002",
"name": "Add URL Source",
"type": "CUSTOM.notebookLm",
"typeVersion": 1,
"position": [
460,
300
],
"credentials": {
"notebookLmApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "chat",
"operation": "ask",
"notebookId": "={{ $json.notebookId }}",
"message": "Summarize the key points from the sources."
},
"id": "a1b2c3d4-0002-0001-0001-000000000003",
"name": "Ask NotebookLM",
"type": "CUSTOM.notebookLm",
"typeVersion": 1,
"position": [
680,
300
],
"credentials": {
"notebookLmApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"When clicking 'Test workflow'": {
"main": [
[
{
"node": "Add URL Source",
"type": "main",
"index": 0
}
]
]
},
"Add URL Source": {
"main": [
[
{
"node": "Ask NotebookLM",
"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 - Add URL Source and Ask. Uses CUSTOM. Event-driven trigger; 3 nodes.
Source: https://github.com/agmmnn/n8n-nodes-notebooklm-sdk/blob/master/examples/add-url-and-chat.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] Availability Exceptions - Create and Delete. Uses CUSTOM. Event-driven trigger; 7 nodes.
[E2E] Availability Exceptions - Get Many. Uses CUSTOM. Event-driven trigger; 5 nodes.