Back to Nodes

Trendyol

Last updated Oct 22, 2025

Trendyol node for n8n

1 Weekly Downloads
28 Monthly Downloads

Included Nodes

Trendyol
Trendyol Trigger

Description

n8n-nodes-trendyol

n8n
+
Trendyol

n8n.io - Trendyol
Version
Downloads
License

A powerful n8n community node for Trendyol Marketplace API integration

Seamlessly automate your Trendyol e-commerce workflows with n8n


What is this?
A custom n8n node for integrating with Trendyol Marketplace API. This node enables seamless automation workflows between Trendyol and other services through n8n's visual workflow builder.

What is n8n?
n8n is a fair-code licensed workflow automation platform that lets you connect different services and automate tasks visually.

Table of Contents

Installation

Follow the installation guide in the n8n community nodes documentation.

Quick Install via n8n Community Nodes

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-trendyol
  4. Agree to the risks: I understand the risks of installing unverified code from a public source
  5. Select Install

That's it! After installation, the Trendyol node will be available in your n8n palette.

Features

This Trendyol node provides comprehensive integration with the Trendyol Marketplace API, supporting:

Products

  • Get Many – Retrieve all products with comprehensive filtering options:
    • Basic Filters: Approved status, archived status, pagination
    • Brand & Category: Filter by specific brand IDs (comma-separated array)
    • Product Identification: Barcode and stock code filtering
    • Date Range: Filter by creation or modification date (timestamp support)
    • Status Filters: On sale, rejected, blacklisted products
    • Supplier Filters: Filter by supplier ID and product main ID

Orders

  • Get Many – Retrieve order information with filtering (date ranges, pagination)

Brands

  • Get Many – List all available brands with pagination
  • Get By Name – Search for brands by name

Categories

  • Get Many – Retrieve all product categories

Credentials

To use this node, you need to authenticate with Trendyol using your API credentials. Here's how to set it up:

Prerequisites

  1. You must have a Trendyol Partner account
  2. Access to Trendyol Partner Panel for API credential generation

Authentication Setup

  1. Log in to your Trendyol Partner account at https://partner.trendyol.com/
  2. Click on your store name in the top-right corner
  3. Select "Hesap Bilgilerim" (Account Information)
  4. Navigate to the "Entegrasyon Bilgileri" (Integration Information) tab
  5. Note down your:
    • Supplier ID (Tedarikçi ID)
    • API Key (API Anahtarı)
    • API Secret (API Gizli Anahtarı)

Credential Configuration

When setting up the Trendyol API credentials in n8n:

  • Supplier ID: Your Trendyol Supplier ID from the integration panel
  • API Key: The API Key from your integration settings
  • API Secret: The API Secret from your integration settings
  • Environment: Choose between Production and Sandbox environments

The node uses HTTP Basic Authentication with your API Key as username and API Secret as password.

Compatibility

  • Minimum n8n version: 1.0.0
  • Node version: 1.0
  • Tested with: n8n 1.x
  • Node.js: >=22.16

This node uses the Trendyol Marketplace API and should be compatible with all current Trendyol partner configurations.

Usage

Quick Start

  1. Install the node using n8n's community node installation process
  2. Set up your Trendyol API credentials
  3. Create a new workflow and add the Trendyol node
  4. Configure your desired operation (Product, Order, Brand, or Category management)

Resource Operations

Product Operations: Retrieve and filter your product catalog with comprehensive filtering options matching official Trendyol API specifications.

Order Operations: Access order information with comprehensive filtering by date ranges, status, and other criteria.

Brand Operations: Retrieve brand information for product categorization and management.

Category Operations: Access Trendyol's category structure for proper product classification.

Advanced Configuration

Pagination: Use page and size parameters for large datasets to efficiently manage API calls and response sizes.

Advanced Product Filtering: Apply comprehensive filters following official Trendyol API specification:

  • Status Filters: approved, archived, onSale, rejected, blacklisted
  • Identification: barcode, stockCode, productMainId, supplierId
  • Date Filtering: startDate, endDate with dateQueryType (CREATED_DATE/LAST_MODIFIED_DATE)
  • Brand Filtering: brandIds (supports multiple brands as comma-separated array)
  • Pagination: page and size parameters for efficient data retrieval

Error Handling: The node includes comprehensive error handling with detailed error messages for troubleshooting.

Contributing

We welcome contributions from the community! Whether you're fixing bugs, adding features, or improving documentation, your help is appreciated.

How to Contribute

  1. Fork the Repository: Click the "Fork" button on GitHub to create your own copy
  2. Clone Your Fork: git clone https://github.com/YOUR_USERNAME/n8n-nodes-trendyol.git
  3. Create a Branch: git checkout -b feature/your-feature-name
  4. Make Your Changes: Implement your feature or fix
  5. Test Your Changes: Ensure everything works correctly
  6. Commit Your Changes: git commit -am 'Add some feature'
  7. Push to Your Branch: git push origin feature/your-feature-name
  8. Create a Pull Request: Submit your changes for review

Code Standards

  • Follow the existing TypeScript code style
  • Use meaningful variable and function names
  • Add JSDoc comments for new functions
  • Ensure all new code is properly typed

Reporting Issues

Found a bug or have a feature request? Please check existing issues first, then create a new issue with:

  • Clear description of the problem or request
  • Steps to reproduce (for bugs)
  • Expected vs actual behavior
  • Your environment details (n8n version, Node.js version, etc.)

Development Setup

Prerequisites

  • Node.js >=22.16
  • n8n (for testing)
  • Trendyol Partner Account with API access

Setup Instructions

  1. Clone the Repository

    git clone https://github.com/YOUR_USERNAME/n8n-nodes-trendyol.git
    cd n8n-nodes-trendyol
    
  2. Install Dependencies

    npm install
    
  3. Build the Project

    npm run build
    
  4. Linting and Formatting

    npm run lint        # Check for linting issues
    npm run lintfix     # Fix auto-fixable issues
    npm run format      # Format code with prettier
    

Project Structure

├── credentials/                 # Authentication credential definitions
│   └── TrendyolApi.credentials.ts
├── nodes/
│   └── Trendyol/
│       ├── Trendyol.node.ts        # Main node orchestrator
│       ├── GenericFunctions.ts     # Shared utility functions
│       ├── types/                  # TypeScript type definitions
│       │   └── index.ts
│       ├── operations/             # Resource operation implementations
│       │   ├── index.ts
│       │   ├── product.operations.ts
│       │   ├── order.operations.ts
│       │   ├── brand.operations.ts
│       │   └── category.operations.ts
│       ├── node-definition/        # Node UI property definitions
│       │   ├── index.ts
│       │   ├── resources.ts
│       │   ├── operations.ts
│       │   └── fields.ts
│       └── trendyol-logo.svg           # Node icon
├── dist/                       # Compiled output
├── gulpfile.js                 # Build configuration
├── package.json               # Project configuration
└── tsconfig.json              # TypeScript configuration

Testing Your Changes

  1. Build the project: npm run build
  2. Link to n8n: Follow n8n's community node development guide
  3. Test your changes in n8n workflows
  4. Verify all operations work as expected with real Trendyol API

Resources

License

This project is licensed under the MIT License – see the LICENSE.md file for details.

Acknowledgments

  • Thanks to the n8n team for creating an amazing workflow automation platform
  • Thanks to Trendyol for providing a comprehensive e-commerce marketplace API
  • Thanks to all contributors who help improve this node

Need Help?