Binance · Capability

Binance Wallet API — Account

Binance Wallet API — Account. 2 operations. Lead operation: Account API trading status. Self-contained Naftiko capability covering one Binance business surface.

Run with Naftiko BinanceAccount

What You Can Do

GET
Getapitradingstatus — Account API trading status
/v1/sapi/v1/account/apitradingstatus
GET
Getsystemstatus — System status
/v1/sapi/v1/system/status

MCP Tools

account-api-trading-status

Account API trading status

read-only idempotent
system-status

System status

read-only idempotent

Capability Spec

wallet-account.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Binance Wallet API — Account
  description: 'Binance Wallet API — Account. 2 operations. Lead operation: Account API trading status. Self-contained Naftiko
    capability covering one Binance business surface.'
  tags:
  - Binance
  - Account
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BINANCE_API_KEY: BINANCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: wallet-account
    baseUri: https://api.binance.com
    description: Binance Wallet API — Account business capability. Self-contained, no shared references.
    resources:
    - name: sapi-v1-account-apiTradingStatus
      path: /sapi/v1/account/apiTradingStatus
      operations:
      - name: getapitradingstatus
        method: GET
        description: Account API trading 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
    - name: sapi-v1-system-status
      path: /sapi/v1/system/status
      operations:
      - name: getsystemstatus
        method: GET
        description: System status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-MBX-APIKEY
      value: '{{env.BINANCE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: wallet-account-rest
    port: 8080
    description: REST adapter for Binance Wallet API — Account. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/sapi/v1/account/apitradingstatus
      name: sapi-v1-account-apitradingstatus
      description: REST surface for sapi-v1-account-apiTradingStatus.
      operations:
      - method: GET
        name: getapitradingstatus
        description: Account API trading status
        call: wallet-account.getapitradingstatus
        with:
          recvWindow: rest.recvWindow
          timestamp: rest.timestamp
          signature: rest.signature
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sapi/v1/system/status
      name: sapi-v1-system-status
      description: REST surface for sapi-v1-system-status.
      operations:
      - method: GET
        name: getsystemstatus
        description: System status
        call: wallet-account.getsystemstatus
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: wallet-account-mcp
    port: 9090
    transport: http
    description: MCP adapter for Binance Wallet API — Account. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: account-api-trading-status
      description: Account API trading status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: wallet-account.getapitradingstatus
      with:
        recvWindow: tools.recvWindow
        timestamp: tools.timestamp
        signature: tools.signature
      outputParameters:
      - type: object
        mapping: $.
    - name: system-status
      description: System status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: wallet-account.getsystemstatus
      outputParameters:
      - type: object
        mapping: $.