Overview
This node integrates with the Kucoin API to manage cryptocurrency orders. It supports operations such as placing new orders, canceling specific orders, canceling all orders, retrieving details of a specific order, and listing orders with various filters. This node is useful for automating trading workflows, managing order lifecycles, and monitoring order statuses on the Kucoin exchange.
Use Case Examples
- Cancel a specific order by providing its unique Order ID to stop its execution.
- Retrieve details of an existing order using its Order ID for tracking or auditing purposes.
- List all orders filtered by trade type and date range to analyze trading activity.
Properties
| Name | Meaning |
|---|---|
| OrderId | Unique ID of the order to be canceled or retrieved. |
Output
JSON
orderId- The unique identifier of the order.status- The current status of the order after the operation.message- Any message returned by the API, such as confirmation or error details.
Dependencies
- Kucoin API with API key, secret, and passphrase credentials
Troubleshooting
- Ensure the provided Order ID is correct and exists on Kucoin to avoid errors when canceling or retrieving orders.
- Check API credentials and permissions if authentication errors occur.
- Handle API rate limits by implementing retry logic or adjusting request frequency.
- Common error messages include invalid order ID, authentication failures, and network issues. Verify input parameters and credentials to resolve these.
Links
- Kucoin API Documentation - Official documentation for Kucoin API endpoints and usage.