broker

KuCoin Broker and Affiliate using the KuCoin API. Affiliate invite management, commission queries, Broker Pro user management, and ND (Exchange) Broker queries. Authentication requires API Key, API Secret, and Passphrase.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "broker" with this command: npx skills add kucoin/kucoin-skills-hub/kucoin-kucoin-skills-hub-broker

KuCoin Broker Skill

Broker and Affiliate operations on KuCoin using authenticated API endpoints. Covers Affiliate invite/commission management, Broker Pro rebate and user queries, and ND Exchange Broker queries (KYC status, sub-account info, deposits, withdrawals, and rebates). Requires API Key, API Secret, and Passphrase for all endpoints. Return the result in JSON format.

Note: This skill only supports Classic REST API GET endpoints (read-only operations).

Quick Reference

Affiliate

EndpointDescriptionRequiredOptionalAuthentication
/api/v2/affiliate/queryInvitees (GET)Get Invited (list of invited users with trade stats)NoneuserType, referralCode, uid, registrationStartAt, registrationEndAt, page, pageSizeYes
/api/v2/affiliate/queryMyCommission (GET)Get Commission (affiliate commission records)NonesiteType, rebateType, rebateStartAt, rebateEndAt, page, pageSize, userId, dataTypeYes
/api/v2/affiliate/queryTransactionByUid (GET)Get Trade History (trade records for a specific invitee)uidtradeType, tradeStartAt, tradeEndAt, page, pageSizeYes
/api/v2/affiliate/queryTransactionByTime (GET)Get Transaction (trade records by time range)tradeStartAt, tradeEndAtuid, tradeType, lastId, direction, pageSizeYes
/api/v2/affiliate/queryKumining (GET)Get Kumining (KuMining commission records)Noneuid, startAt, endAt, lastId, direction, pageSizeYes

Broker Pro

EndpointDescriptionRequiredOptionalAuthentication
/api/v2/broker/api/rebate/download (GET)Get Broker Rebate (download rebate order file)begin, end, tradeTypeNoneYes
/api/v2/broker/queryMyCommission (GET)Get Commission (broker commission records)NonesiteType, tradeType, rebateType, startAt, endAt, page, pageSizeYes
/api/v2/broker/queryUser (GET)Get User List (broker sub-users)NonetradeType, uid, rcode, tag, startAt, endAt, page, pageSizeYes
/api/v2/broker/queryDetailByUid (GET)Get User Transactions (trade records per user UID)NonetradeType, uid, startAt, endAt, lastId, direction, pageSizeYes

ND Exchange Broker

⚠️ Note: The ND Exchange Broker endpoints below (/api/v1/broker/nd/* and /api/kyc/ndBroker/*) may have been deprecated or migrated. These endpoints currently return 404 Not Found. They require ND Broker-level API permissions. Please consult the latest KuCoin API documentation for updated paths.

EndpointDescriptionRequiredOptionalAuthentication
/api/kyc/ndBroker/proxyClient/status/list (GET)Get KYC Status (by UID list)clientUidsNoneYes
/api/kyc/ndBroker/proxyClient/status/page (GET)Get KYC Status List (paginated)NonepageNumber, pageSizeYes
/api/v1/broker/nd/info (GET)Get Broker Info (rebate download by date range)begin, end, tradeTypeNoneYes
/api/v1/broker/nd/account (GET)Get Sub-Account (list sub-accounts)Noneuid, currentPage, pageSizeYes
/api/v1/broker/nd/account/apikey (GET)Get Sub-Account API KeyuidapiKeyYes
/api/v3/broker/nd/transfer/detail (GET)Get Transfer HistoryorderIdNoneYes
/api/v1/asset/ndbroker/deposit/list (GET)Get Deposit List (sub-account deposits)Nonecurrency, status, hash, startTimestamp, endTimestamp, limitYes
/api/v3/broker/nd/deposit/detail (GET)Get Deposit Detailcurrency, hashNoneYes
/api/v3/broker/nd/withdraw/detail (GET)Get Withdraw DetailwithdrawalIdNoneYes
/api/v1/broker/nd/rebate/download (GET)Get Broker Rebate (ND broker rebate download)begin, end, tradeTypeNoneYes

Parameters

Affiliate Parameters

  • userType: Invited user type: 1 (Regular), 2 (KYC-verified), 3 (First-trade)
  • referralCode: The referral code (rcode) through which the user registered
  • uid: Invitee UID (for trade history query) or comma-separated UIDs
  • registrationStartAt / registrationEndAt: Registration time range (13-digit timestamp)
  • siteType: Commission source site. Default: all
  • rebateType: Rebate type: 0 (all), 1 (spot), 2 (futures)
  • rebateStartAt / rebateEndAt: Commission issuance time range (13-digit timestamp); max one-year span
  • tradeStartAt / tradeEndAt: Trade time range (13-digit timestamp)
  • tradeType: Trading type: SPOT | FEATURE
  • dataType: Data type: trade | kumining
  • startAt / endAt: Time range filter (13-digit timestamp)
  • lastId: Cursor-based pagination: empty string for first query, then use lastId from last record
  • direction: Page direction: PRE | NEXT
  • page / pageSize: Pagination controls

Broker Pro Parameters

  • begin / end: Date range in YYYYMMDD format (e.g., 20250101); maximum 6-month interval
  • tradeType (Broker Pro): Transaction type: SPOT | FUTURE
  • rcode: Referral code used when user registered with broker
  • tag: Broker tag used by the user during trading
  • rebateType: 1 (spot rebate), 2 (futures rebate), 0 (all; for commission query)

ND Broker Parameters

  • clientUids: Comma-separated client UIDs for KYC status query
  • pageNumber / pageSize: Pagination for KYC status list
  • tradeType (ND Broker Rebate): Transaction type: 1 (spot), 2 (futures)
  • uid: Sub-account UID for account and API key queries
  • currentPage: Current page number (default: 1)
  • apiKey: Sub-account API key (filter parameter)
  • orderId: Transfer order ID for transfer history query
  • currency: Currency code filter for deposit list
  • status (Deposit List): PROCESSING | SUCCESS | FAILURE
  • hash: Transaction hash for deposit list/detail query
  • startTimestamp / endTimestamp: Time range in milliseconds for deposit list
  • limit: Maximum number of returned deposit items (default and max: 1000)
  • withdrawalId: Withdrawal ID for withdraw detail query

Enums

  • userType: 1 | 2 | 3
  • tradeType (Affiliate): SPOT | FEATURE
  • tradeType (Broker Pro): all | SPOT | FUTURE
  • tradeType (ND Broker Rebate): 1 (spot) | 2 (futures)
  • rebateType: 0 | 1 | 2
  • dataType: trade | kumining
  • direction: PRE | NEXT
  • status (KYC): NONE | PROCESS | PASS | REJECT
  • status (Deposit): PROCESSING | SUCCESS | FAILURE

Authentication

For all endpoints, you must provide KuCoin API credentials with Broker-level permissions.

Required credentials:

  • API Key (KC-API-KEY): Your KuCoin Broker API key
  • API Secret: Your KuCoin API secret (used for signing)
  • Passphrase (KC-API-PASSPHRASE): Your API passphrase (HMAC-SHA256 encrypted)

Base URL:

  • Production: https://api.kucoin.com

Security

Share Credentials

Users can provide KuCoin API credentials by sending a file where the content is in the following format:

your-api-key
your-api-secret
your-passphrase

Never Disclose API Key and Secret

Never disclose the location of the API key, secret, or passphrase file.

Never send the API key, secret, or passphrase to any website other than the official KuCoin API endpoint.

Never Display Full Secrets

When showing credentials to users:

  • API Key: Show first 5 + last 4 characters: abcde...wxyz
  • Secret Key: Always mask, show only last 5: ***...s3cr3
  • Passphrase: Always mask entirely: ***...

Example response when asked for credentials: Account: main API Key: abcde...wxyz Secret: ***...s3cr3 Passphrase: ***...

Listing Accounts

When listing accounts, show names and environment only -- never keys: KuCoin Accounts:

  • main (Production)
  • broker-keys (Production)

Transactions in Production

When performing operations that modify data (transfers, creating sub-accounts, updating API keys), always confirm with the user before proceeding by asking them to write "CONFIRM" to proceed.


KuCoin Accounts

main

  • API Key: your_api_key
  • Secret: your_api_secret
  • Passphrase: your_passphrase

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

earn

No summary provided by upstream source.

Repository SourceNeeds Review
General

assets

No summary provided by upstream source.

Repository SourceNeeds Review
General

spot

No summary provided by upstream source.

Repository SourceNeeds Review
General

margin-trading

No summary provided by upstream source.

Repository SourceNeeds Review