PickerPro Meli
Actions15
Overview
This node integrates PickerPro with n8n to automate various data retrieval and management tasks related to Mercado Libre, a popular e-commerce platform in Latin America. It enables users to fetch market insights, seller information, site categories, listing details, and more by calling PickerPro's API endpoints.
The "Market Highlights" operation specifically retrieves key market highlight data for a given category, which can be useful for sellers or analysts looking to understand trending products, demand patterns, or competitive landscape within a specific product category on Mercado Libre.
Practical examples:
- An e-commerce manager wants to monitor the most popular product categories to adjust inventory accordingly.
- A marketing analyst uses market highlights to identify emerging trends and plan promotional campaigns.
- A seller automates daily reports on market highlights to stay updated without manual research.
Properties
| Name | Meaning |
|---|---|
| IntegrationToken | The secret token used to authenticate requests to PickerPro's API. |
| Category ID | The identifier of the product category for which to retrieve market highlights data. |
Output
The node outputs a JSON object containing the market highlights data under the property markethighlights. This data typically includes aggregated metrics and insights about the specified category's market performance on Mercado Libre.
Example output structure:
{
"markethighlights": {
// Market highlights data fields returned by PickerPro API
}
}
No binary data is produced by this operation.
Dependencies
- Requires an active PickerPro API credential with a valid API key and organization ID configured in n8n.
- Needs the user to provide a valid integration token as input.
- Relies on PickerPro's external API services to fetch Mercado Libre data.
Troubleshooting
- Missing API Key or Organization ID: The node will throw an error if the PickerPro API credentials are not set up properly. Ensure these credentials are configured in n8n before running the node.
- Invalid or missing Integration Token: The operation requires a valid token parameter; missing or incorrect tokens will cause API request failures.
- Unsupported Operation Error: If an unsupported operation name is provided, the node throws an error indicating the operation is not supported.
- Parameter Retrieval Errors: The node attempts to safely get parameters like
categoryIdand logs errors if they cannot be retrieved. Make sure all required parameters are correctly set. - API Response Issues: Network problems or invalid category IDs may result in empty or error responses from the API.
Links and References
- PickerPro Official Website
- Mercado Libre Developer Portal
- n8n Documentation on Creating Custom Nodes