Kucoin icon

Kucoin

Consume Kucoin API (v.0.2.3)

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

  1. Cancel a specific order by providing its unique Order ID to stop its execution.
  2. Retrieve details of an existing order using its Order ID for tracking or auditing purposes.
  3. 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

Discussion