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 and Download Infographic",
"nodes": [
{
"parameters": {},
"id": "cf33b182-855b-47dd-8a7f-5068622faef3",
"name": "When clicking 'Test workflow'",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
-1248,
-144
]
},
{
"parameters": {},
"id": "d429237c-ba38-41e0-a63d-a9dfc8fab250",
"name": "List Notebooks",
"type": "CUSTOM.notebookLm",
"typeVersion": 1,
"position": [
-1024,
-144
],
"credentials": {
"notebookLmApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"jsCode": "// Notebooks are returned in most-recently-accessed order.\n// Take the first one.\nreturn [$input.first()];"
},
"id": "66bf1f9f-f22a-44be-a91a-8e65324d8621",
"name": "Pick Latest Notebook",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
-800,
-144
]
},
{
"parameters": {
"resource": "artifact",
"operation": "createInfographic",
"notebookId": "={{ $json.id }}",
"infographicOrientation": 1,
"infographicStyle": 6
},
"id": "99688542-a189-44a5-9f84-36d63e190619",
"name": "Create Infographic",
"type": "CUSTOM.notebookLm",
"typeVersion": 1,
"position": [
-592,
-144
],
"credentials": {
"notebookLmApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "artifact",
"operation": "waitUntilReady",
"notebookId": "={{ $('Pick Latest Notebook').first().json.id }}",
"artifactId": "={{ $json.artifactId }}",
"timeout": 300,
"pollInterval": 5
},
"id": "8df0d5d7-f014-4b63-8af5-6d9918d93aef",
"name": "Wait Until Ready",
"type": "CUSTOM.notebookLm",
"typeVersion": 1,
"position": [
-368,
-144
],
"credentials": {
"notebookLmApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "artifact",
"operation": "downloadInfographic",
"notebookId": "={{ $('Pick Latest Notebook').first().json.id }}",
"artifactId": "={{ $json.id }}"
},
"id": "c435aa91-da48-4d10-a353-f963e3ebfbe8",
"name": "Download Infographic",
"type": "CUSTOM.notebookLm",
"typeVersion": 1,
"position": [
-144,
-144
],
"credentials": {
"notebookLmApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"When clicking 'Test workflow'": {
"main": [
[
{
"node": "List Notebooks",
"type": "main",
"index": 0
}
]
]
},
"List Notebooks": {
"main": [
[
{
"node": "Pick Latest Notebook",
"type": "main",
"index": 0
}
]
]
},
"Pick Latest Notebook": {
"main": [
[
{
"node": "Create Infographic",
"type": "main",
"index": 0
}
]
]
},
"Create Infographic": {
"main": [
[
{
"node": "Wait Until Ready",
"type": "main",
"index": 0
}
]
]
},
"Wait Until Ready": {
"main": [
[
{
"node": "Download Infographic",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1",
"binaryMode": "separate"
},
"versionId": "2544e4ee-2d8d-46d7-a4c1-4460af56876b",
"meta": {
"templateCredsSetupCompleted": true
},
"id": "y6MLtyys1lycpjAK",
"tags": []
}
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 and Download Infographic. Uses CUSTOM. Event-driven trigger; 6 nodes.
Source: https://github.com/agmmnn/n8n-nodes-notebooklm-sdk/blob/master/examples/list-create-download-infographic.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.
N8N-Community-Node-Klicktipp. Uses n8n-nodes-klicktipp, CUSTOM. Event-driven trigger; 22 nodes.
Wf-C0. Uses executeWorkflowTrigger, CUSTOM. Event-driven trigger; 10 nodes.
Coinbase CDP - Swap Tokens. Uses CUSTOM. Event-driven trigger; 5 nodes.
[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.