PickerPro Meli icon

PickerPro Meli

This node integrates PickerPro with n8n to automate management in Mercado Libre, allowing order synchronization, stock updates and warehouse consultation in real time

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 real-time information such as site listing prices, market highlights, seller reputation, site categories, and more by calling PickerPro's API endpoints.

The "Site Listing Prices" operation specifically retrieves pricing information for listings on a specified Mercado Libre site. This can be useful for sellers or analysts who want to monitor competitive pricing, track price trends, or update their own pricing strategies based on current market data.

Practical examples:

  • An e-commerce manager automates daily price monitoring of competitor listings on Mercado Libre to adjust their own product prices dynamically.
  • A data analyst collects site listing price data to analyze market trends and consumer behavior across different regions.
  • A seller integrates this node into their workflow to synchronize pricing data between their inventory system and Mercado Libre listings.

Properties

Name Meaning
IntegrationToken The token used to authenticate requests to the PickerPro API.
Site ID The identifier of the Mercado Libre site for which listing prices are requested.

Output

The output JSON contains a single field named siteprices which holds the data returned from the PickerPro API about listing prices on the specified site. The exact structure depends on the API response but generally includes details such as item IDs, prices, currency, and possibly other metadata related to listings.

No binary data output is produced by this operation.

Example output structure (simplified):

{
  "siteprices": {
    "listings": [
      {
        "itemId": "MLA123456",
        "price": 1000,
        "currency": "ARS",
        "condition": "new"
      },
      ...
    ]
  }
}

Dependencies

  • Requires an active PickerPro API key credential for authentication.
  • The node depends on PickerPro's external API services to fetch Mercado Libre data.
  • Proper configuration of the API key and organization ID within n8n credentials is necessary.
  • The user must provide a valid Integration Token and Site ID as input parameters.

Troubleshooting

  • Missing API Key or Organization ID: The node throws an error if these credentials are not configured. Ensure that the PickerPro API key and organization ID are correctly set up in n8n credentials.
  • Invalid or missing Integration Token: If the token parameter is empty or invalid, API calls will fail. Verify the token value before execution.
  • Incorrect Site ID: Providing an invalid or unsupported site ID may result in empty or error responses. Confirm the site ID corresponds to a valid Mercado Libre site.
  • Operation not supported: If an unsupported operation name is provided, the node will throw an error indicating the operation is not supported.
  • API rate limits or network issues: Since the node relies on external API calls, network problems or hitting API rate limits can cause failures. Check connectivity and API usage quotas.

Links and References

Discussion