Binance · Capability

Binance Copy Trading API — Copy Trading

Binance Copy Trading API — Copy Trading. 2 operations. Lead operation: Get lead trading symbol whitelist. Self-contained Naftiko capability covering one Binance business surface.

Run with Naftiko BinanceCopy Trading

What You Can Do

GET
Getleadsymbols — Get lead trading symbol whitelist
/v1/sapi/v1/copy-trading/futures/leadsymbol
GET
Getuserstatus — Get copy trading user status
/v1/sapi/v1/copy-trading/futures/userstatus

MCP Tools

get-lead-trading-symbol-whitelist

Get lead trading symbol whitelist

read-only idempotent
get-copy-trading-user-status

Get copy trading user status

read-only idempotent

Capability Spec

copy-trading-copy-trading.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Binance Copy Trading API — Copy Trading
  description: 'Binance Copy Trading API — Copy Trading. 2 operations. Lead operation: Get lead trading symbol whitelist.
    Self-contained Naftiko capability covering one Binance business surface.'
  tags:
  - Binance
  - Copy Trading
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BINANCE_API_KEY: BINANCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: copy-trading-copy-trading
    baseUri: https://api.binance.com
    description: Binance Copy Trading API — Copy Trading business capability. Self-contained, no shared references.
    resources:
    - name: sapi-v1-copy-trading-futures-leadSymbol
      path: /sapi/v1/copy-trading/futures/leadSymbol
      operations:
      - name: getleadsymbols
        method: GET
        description: Get lead trading symbol whitelist
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: recvWindow
          in: query
          type: integer
        - name: timestamp
          in: query
          type: integer
          required: true
        - name: signature
          in: query
          type: string
          required: true
    - name: sapi-v1-copy-trading-futures-userStatus
      path: /sapi/v1/copy-trading/futures/userStatus
      operations:
      - name: getuserstatus
        method: GET
        description: Get copy trading user status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: recvWindow
          in: query
          type: integer
        - name: timestamp
          in: query
          type: integer
          required: true
        - name: signature
          in: query
          type: string
          required: true
    authentication:
      type: apikey
      key: X-MBX-APIKEY
      value: '{{env.BINANCE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: copy-trading-copy-trading-rest
    port: 8080
    description: REST adapter for Binance Copy Trading API — Copy Trading. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/sapi/v1/copy-trading/futures/leadsymbol
      name: sapi-v1-copy-trading-futures-leadsymbol
      description: REST surface for sapi-v1-copy-trading-futures-leadSymbol.
      operations:
      - method: GET
        name: getleadsymbols
        description: Get lead trading symbol whitelist
        call: copy-trading-copy-trading.getleadsymbols
        with:
          recvWindow: rest.recvWindow
          timestamp: rest.timestamp
          signature: rest.signature
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sapi/v1/copy-trading/futures/userstatus
      name: sapi-v1-copy-trading-futures-userstatus
      description: REST surface for sapi-v1-copy-trading-futures-userStatus.
      operations:
      - method: GET
        name: getuserstatus
        description: Get copy trading user status
        call: copy-trading-copy-trading.getuserstatus
        with:
          recvWindow: rest.recvWindow
          timestamp: rest.timestamp
          signature: rest.signature
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: copy-trading-copy-trading-mcp
    port: 9090
    transport: http
    description: MCP adapter for Binance Copy Trading API — Copy Trading. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-lead-trading-symbol-whitelist
      description: Get lead trading symbol whitelist
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: copy-trading-copy-trading.getleadsymbols
      with:
        recvWindow: tools.recvWindow
        timestamp: tools.timestamp
        signature: tools.signature
      outputParameters:
      - type: object
        mapping: $.
    - name: get-copy-trading-user-status
      description: Get copy trading user status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: copy-trading-copy-trading.getuserstatus
      with:
        recvWindow: tools.recvWindow
        timestamp: tools.timestamp
        signature: tools.signature
      outputParameters:
      - type: object
        mapping: $.