Tiendanube - Get Products
Description
Section titled “Description”This module allows querying products from a Tiendanube store. It can get a specific product by ID or list products with various filters such as category, publication status, dates, and more.
Configuration
Section titled “Configuration”Required Credentials
Section titled “Required Credentials”- Store ID: Your store ID (visible in the panel URL)
- Access Token: OAuth2 access token
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
| credentials_id | credential | Yes | Tiendanube credentials |
| product_id | string | No | Specific product ID |
| category_id | string | No | Filter by category |
| published | select | No | Publication status |
| free_shipping | select | No | With/without free shipping |
| created_at_min | string | No | Minimum creation date |
| created_at_max | string | No | Maximum creation date |
| sort_by | select | No | Sorting |
| per_page | number | No | Results per page (default: 50) |
| page | number | No | Page number (default: 1) |
Output
Section titled “Output”{ "success": true, "products": [...], "count": 50, "page": 1, "per_page": 50, "message": "50 products retrieved"}Product Fields
Section titled “Product Fields”id: Product IDname: Object with name by language (es, pt)description: Object with description by languagehandle: SEO-friendly URL by languagevariants: Variants arrayimages: Images arraycategories: Categories arraybrand: Brandpublished: Publication statusfree_shipping: Free shippingcreated_at: Creation dateupdated_at: Update date
Usage Example
Section titled “Usage Example”Get product by ID
Section titled “Get product by ID”{ "product_id": "12345678"}Published products from a category
Section titled “Published products from a category”{ "category_id": "123", "published": "true", "sort_by": "created_at-desc"}Products with free shipping
Section titled “Products with free shipping”{ "free_shipping": "true", "per_page": 100}API Used
Section titled “API Used”- Endpoint:
GET /v1/{store_id}/products - Documentation: Tiendanube API
- Text fields (name, description) are multilingual objects
- The primary language depends on the store’s country (es for Latin America, pt for Brazil)
- Each product can have multiple variants with independent prices and stock
- The maximum limit per page is 200 products
Related Nodes
Section titled “Related Nodes”- TiendanubeCreateProduct - Create a new product
- TiendanubeUpdateProduct - Update product data
- TiendanubeGetOrders - Get orders that include products