Overview
This node integrates with the Leadcrate API to retrieve multiple "Crate" records. It is designed to fetch a collection of crates in one request, which can be useful for workflows that need to process or analyze batches of crate data from Leadcrate.
Common scenarios include:
- Synchronizing crate data from Leadcrate into another system.
- Performing bulk analysis or reporting on multiple crates.
- Triggering downstream automation based on the list of crates retrieved.
For example, a user might use this node to get all crates created within a certain timeframe and then filter or enrich that data in subsequent workflow steps.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate the API call. Options: Access Token |
Note: The node currently supports only "Access Token" as the authentication method.
Output
The node outputs an array of JSON objects representing the crates retrieved from the Leadcrate API. Each item in the output corresponds to a crate record returned by the API endpoint.
The output structure is:
[
{
"json": { /* crate data object(s) */ }
}
]
No binary data output is produced by this node.
Dependencies
- Requires an active Leadcrate API access token configured in the node credentials.
- The node makes HTTP GET requests to the Leadcrate API's "crate" endpoint.
- No additional external dependencies are required beyond the API access.
Troubleshooting
- Authentication errors: If the API returns authentication failures, verify that the provided access token is valid and has not expired.
- Empty or unexpected results: Ensure that the Leadcrate account contains crates and that any filters (if added later) are correctly specified.
- Network issues: Check connectivity to the Leadcrate API endpoint and ensure no firewall or proxy is blocking requests.
- API rate limits: If many requests are made in a short time, the API may throttle calls; consider adding delays or handling retries.
Links and References
- Leadcrate API Documentation (example placeholder link)
- n8n documentation on creating custom nodes