ApiSkills

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

  • 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.

    Sign in to download

Pagination

Data manipulation

  • 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.

    Sign in to download

Web Scraping

  • HTML Extract (CSS selectors)

    Fetch /samples/store, extract title/price with the HTML node; src via Return Value = Attribute.

    Sign in to download

Capstone

  • OAuth2 → Paginate → Flatten

    Authenticate, page through all candles, Split Out into rows.

    Sign in to download