CrunchzApp icon

CrunchzApp

Interact with CrunchzApp API

Overview

This node interacts with the CrunchzApp API, specifically to retrieve chat data when using the "Chat" resource and the "All Chat" operation. It allows users to fetch a list of chat entries with pagination support through limit and offset parameters. This is useful for scenarios where you want to display or process multiple chat records from CrunchzApp, such as building dashboards, exporting chat logs, or integrating chat data into other workflows.

Properties

Name Meaning
Limit The maximum number of chat entries to retrieve (pagination limit).
Offset The starting position in the list of chat entries to begin retrieval (pagination offset).

Output

The node outputs JSON data containing the retrieved chat entries from CrunchzApp. Each item in the output corresponds to a chat record fetched according to the specified limit and offset. The structure of each chat record depends on the CrunchzApp API response schema but typically includes details like message content, sender info, timestamps, etc.

No binary data output is indicated by the source code.

Dependencies

  • Requires an API key credential for authenticating with the CrunchzApp API.
  • The node uses the CrunchzApp REST API endpoint at https://api.crunchz.app/api.
  • Proper configuration of the API key credential within n8n is necessary for successful requests.

Troubleshooting

  • Common issues:

    • Invalid or missing API key credential will cause authentication failures.
    • Providing invalid values for limit or offset (e.g., negative numbers) may result in errors or empty responses.
    • Network connectivity problems can prevent access to the CrunchzApp API.
  • Error messages:

    • Authentication errors typically indicate issues with the API key; verify that the credential is correctly set up.
    • HTTP 4xx or 5xx errors suggest request parameter issues or server-side problems; check the input parameters and retry later.

Links and References

  • CrunchzApp API documentation (not provided in source; consult CrunchzApp official resources)
  • n8n documentation on creating and using API credentials

Discussion