n8n workflows
Download a JSON, then in n8n: Workflows → Import from File. Replace the example API domain with yours and add your credentials.
🔒 Downloads are free — just sign in first. Clicking a download will take you to sign-in and bring you right back.
Authentication
- Sign in to download
Basic Auth
Basic Auth credential: username = App ID, password = App Secret.
- Sign in to download
Bearer Token
Your app's bearer token (bt_...) in the Authorization header.
- Sign in to download
Header API Key
API key in the x-api-key header (Stripe/SendGrid style).
- Sign in to download
OAuth2 Client Credentials
OAuth2 API credential — token URL /oauth/token, Client ID/Secret = App ID/Secret.
- Sign in to download
Digest Auth
Digest Auth credential — username = App ID, password = your API key. n8n handles the nonce challenge.
- Sign in to download
JWT (issue → Bearer)
Issue an HS256/RS256 token with Basic auth, then present it as a Bearer token.
Pagination
- Sign in to download
Page-number
page = $pageCount + 1; stop when has_next is false.
- Sign in to download
Offset / limit
offset = $pageCount * 50; stop when has_next is false.
- Sign in to download
Cursor
Follow pagination.next_url (carries the opaque cursor) until null.
- Sign in to download
Page token (YouTube-style)
Read nextPageToken, resend it as ?pageToken=; stop when it is empty.
- Sign in to download
Link header
Parse rel="next" from the RFC 5988 Link response header.
Data manipulation
- Sign in to download
Group & Aggregate (Summarize)
sum/count split by department — the group-by node.
- Sign in to download
Computed columns (Edit Fields)
Add variance_pct and an over_budget flag, keep the rest.
- Sign in to download
Filter → Sort → Limit
Keep high-volume rows, sort, take the top 10.
- Sign in to download
Merge / Join two sources
Join campaigns to the channels reference on channel.
- Sign in to download
Custom logic (Code node)
Map to a clean shape + computed field when nodes fall short.
Web Scraping
- Sign in to download
HTML Extract (CSS selectors)
Fetch /samples/store, extract title/price with the HTML node; src via Return Value = Attribute.
Capstone
- Sign in to download
OAuth2 → Paginate → Flatten
Authenticate, page through all candles, Split Out into rows.