AutomationFlowsData & Sheets › Daily Digital Products Automation - Pdfcrowd

Daily Digital Products Automation - Pdfcrowd

Daily Digital Products Automation - PDFCrowd. Uses httpRequest, googleSheets. Event-driven trigger; 8 nodes.

Event trigger★★★★☆ complexity8 nodesHTTP RequestGoogle Sheets
Data & Sheets Trigger: Event Nodes: 8 Complexity: ★★★★☆ Added:

This workflow follows the Google Sheets → HTTP Request recipe pattern — see all workflows that pair these two integrations.

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 →

Download .json
{
  "name": "Daily Digital Products Automation - PDFCrowd",
  "nodes": [
    {
      "parameters": {},
      "name": "Trigger Manually",
      "type": "n8n-nodes-base.manualTrigger",
      "typeVersion": 1,
      "position": [
        250,
        300
      ]
    },
    {
      "parameters": {
        "functionCode": "const niches = [\"Fitness\", \"Cooking\", \"Finance\", \"Education\", \"Mindfulness\", \"Productivity\", \"Travel\", \"Parenting\", \"DIY\", \"Pets\", \"Fashion\", \"Gaming\", \"Health\", \"Marketing\", \"Technology\", \"Art\", \"Photography\", \"Language Learning\", \"Self-Improvement\", \"Motivation\"];\nreturn niches.map(niche => ({ json: { niche } }));"
      },
      "name": "Generate Niches",
      "type": "n8n-nodes-base.function",
      "typeVersion": 1,
      "position": [
        500,
        300
      ]
    },
    {
      "parameters": {
        "batchSize": 1
      },
      "name": "Split In Batches",
      "type": "n8n-nodes-base.splitInBatches",
      "typeVersion": 1,
      "position": [
        750,
        300
      ]
    },
    {
      "parameters": {
        "url": "https://api.openai.com/v1/chat/completions",
        "method": "POST",
        "jsonParameters": true,
        "bodyParametersJson": "{\n  \"model\": \"gpt-3.5-turbo\",\n  \"messages\": [\n    {\"role\": \"system\", \"content\": \"You are a helpful assistant that generates digital product ideas.\"},\n    {\"role\": \"user\", \"content\": \"Generate a digital product in the niche {{$json.niche}}. Include title, short description, and price in USD. Return in JSON format like {\\\"title\\\":\\\"...\\\",\\\"description\\\":\\\"...\\\",\\\"price_usd\\\":...}.\"}\n  ]\n}"
      },
      "name": "OpenAI Generate Product",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        1000,
        300
      ],
      "credentials": {
        "httpBasicAuth": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "url": "https://api.pdfcrowd.com/convert/",
        "method": "POST",
        "options": {},
        "bodyParametersJson": "{\n  \"src\": \"<h1>{{$json.title}}</h1><p>{{$json.description}}</p>\",\n  \"use_print\": \"false\",\n  \"pdf_name\": \"{{$json.title}}.pdf\"\n}",
        "responseFormat": "file",
        "binaryPropertyName": "data",
        "authentication": "basicAuth",
        "basicAuthUser": "YOUR_PDFCROWD_USERNAME",
        "basicAuthPassword": "YOUR_PDFCROWD_APIKEY"
      },
      "name": "Generate PDF via PDFCrowd",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        1250,
        300
      ]
    },
    {
      "parameters": {
        "url": "https://api.openai.com/v1/images/generations",
        "method": "POST",
        "jsonParameters": true,
        "bodyParametersJson": "{\n  \"prompt\": \"Cover image for {{$json.title}}, niche: {{$json.niche}}, professional digital product style\",\n  \"size\": \"512x512\",\n  \"n\":1\n}"
      },
      "name": "OpenAI Cover Image",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        1500,
        300
      ],
      "credentials": {
        "httpHeaderAuth": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "url": "https://api.gumroad.com/v2/products",
        "method": "POST",
        "jsonParameters": false,
        "bodyParametersJson": "{\n  \"product[name]\": \"{{$json.title}}\",\n  \"product[description]\": \"{{$json.description}}\",\n  \"product[price]\": \"{{$json.price_usd}}\",\n  \"files[]\": \"{{$binary.data}}\",\n  \"cover\": \"{{$binary.cover}}\"\n}"
      },
      "name": "Gumroad Upload",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        1750,
        300
      ],
      "credentials": {
        "httpHeaderAuth": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "operation": "append",
        "sheetId": "YOUR_GOOGLE_SHEET_ID",
        "range": "Sheet1",
        "columns": [
          {
            "column": "A",
            "value": "={{$json.niche}}"
          },
          {
            "column": "B",
            "value": "={{$json.title}}"
          },
          {
            "column": "C",
            "value": "={{$json.price_usd}}"
          },
          {
            "column": "D",
            "value": "={{$json.product_permalink}}"
          },
          {
            "column": "E",
            "value": ""
          },
          {
            "column": "F",
            "value": "={{$now.toISOString()}}"
          }
        ]
      },
      "name": "Google Sheets Log",
      "type": "n8n-nodes-base.googleSheets",
      "typeVersion": 1,
      "position": [
        2000,
        300
      ],
      "credentials": {
        "googleSheetsOAuth2Api": "<your credential>"
      }
    }
  ],
  "connections": {
    "Trigger Manually": {
      "main": [
        [
          {
            "node": "Generate Niches",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Generate Niches": {
      "main": [
        [
          {
            "node": "Split In Batches",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Split In Batches": {
      "main": [
        [
          {
            "node": "OpenAI Generate Product",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "OpenAI Generate Product": {
      "main": [
        [
          {
            "node": "Generate PDF via PDFCrowd",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Generate PDF via PDFCrowd": {
      "main": [
        [
          {
            "node": "OpenAI Cover Image",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "OpenAI Cover Image": {
      "main": [
        [
          {
            "node": "Gumroad Upload",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Gumroad Upload": {
      "main": [
        [
          {
            "node": "Google Sheets Log",
            "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.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Daily Digital Products Automation - PDFCrowd. Uses httpRequest, googleSheets. Event-driven trigger; 8 nodes.

Source: https://gist.github.com/aminehalimi979-ops/33ed41e55f2d7f8bd3cf2b68f5e55652 — original creator credit. Request a take-down →

More Data & Sheets workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Data & Sheets

TrackCollect_deeper. Uses googleSheets, httpRequest, @n-octo-n/n8n-nodes-json-database, itemLists. Event-driven trigger; 80 nodes.

Google Sheets, HTTP Request, @N Octo N/N8N Nodes Json Database +1
Data & Sheets

This template is ideal for solo store owners, eCommerce marketers, automation beginners, or anyone using Shopify and Gmail who wants to recover lost revenue without coding.

HTTP Request, Gmail, Twilio +3
Data & Sheets

PCN. Uses googleSheets, httpRequest, @n-octo-n/n8n-nodes-json-database, itemLists. Event-driven trigger; 60 nodes.

Google Sheets, HTTP Request, @N Octo N/N8N Nodes Json Database +3
Data & Sheets

The workflow automates the process of gathering extensive keyword data for a "Main Keyword." It starts by reading initial parameters from a Google Sheets template, creates a new dedicated Google Sheet

Google Sheets, Google Drive, HTTP Request
Data & Sheets

cdp_router. Uses gmailTrigger, telegramTrigger, googleSheets, httpRequest. Event-driven trigger; 53 nodes.

Gmail Trigger, Telegram Trigger, Google Sheets +4