Backpack · Capability

Backpack Exchange — System

Backpack Exchange API — System. 4 operations. Self-contained Naftiko capability covering one Backpack business surface.

Backpack Exchange — System is a Naftiko capability published by Backpack, one of 12 capabilities the APIs.io network indexes for this provider. It bundles 4 operations across the GET method.

The capability includes 4 read-only operations. Lead operation: Get system status. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Backpack, Exchange, and System.

Run with Naftiko BackpackExchangeSystem

What You Can Do

GET
Get status — Get system status.
/api/v1/status
GET
Ping — Ping.
/api/v1/ping
GET
Get time — Get system time.
/api/v1/time
GET
Get wallets — Get wallets.
/api/v1/wallets

MCP Tools

backpack-get-status

Get system status.

read-only idempotent
backpack-ping

Ping.

read-only idempotent
backpack-get-time

Get system time.

read-only idempotent
backpack-get-wallets

Get wallets.

read-only idempotent

Capability Spec

system.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "Backpack Exchange \u2014 System"
  description: "Backpack Exchange API \u2014 System. 4 operations. Self-contained Naftiko capability covering one Backpack business surface."
  tags:
  - Backpack
  - Exchange
  - System
  created: '2026-05-24'
  modified: '2026-05-24'
binds:
- namespace: env
  keys:
    BACKPACK_API_KEY: BACKPACK_API_KEY
    BACKPACK_API_SECRET: BACKPACK_API_SECRET
capability:
  consumes:
  - type: http
    namespace: backpack-system
    baseUri: https://api.backpack.exchange
    description: Backpack Exchange System business capability. ED25519 signed requests.
    resources:
    - name: api-v1-status
      path: /api/v1/status
      operations:
      - name: get-status
        method: GET
        description: Get system status.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v1-ping
      path: /api/v1/ping
      operations:
      - name: ping
        method: GET
        description: Ping.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v1-time
      path: /api/v1/time
      operations:
      - name: get-time
        method: GET
        description: Get system time.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v1-wallets
      path: /api/v1/wallets
      operations:
      - name: get-wallets
        method: GET
        description: Get wallets.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.BACKPACK_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: backpack-system-rest
    port: 8080
    description: "REST adapter for Backpack Exchange \u2014 System."
    resources:
    - path: /api/v1/status
      name: api-v1-status
      description: REST surface for api-v1-status.
      operations:
      - method: GET
        name: get-status
        description: Get system status.
        call: backpack-system.get-status
        outputParameters:
        - type: object
          mapping: $.
    - path: /api/v1/ping
      name: api-v1-ping
      description: REST surface for api-v1-ping.
      operations:
      - method: GET
        name: ping
        description: Ping.
        call: backpack-system.ping
        outputParameters:
        - type: object
          mapping: $.
    - path: /api/v1/time
      name: api-v1-time
      description: REST surface for api-v1-time.
      operations:
      - method: GET
        name: get-time
        description: Get system time.
        call: backpack-system.get-time
        outputParameters:
        - type: object
          mapping: $.
    - path: /api/v1/wallets
      name: api-v1-wallets
      description: REST surface for api-v1-wallets.
      operations:
      - method: GET
        name: get-wallets
        description: Get wallets.
        call: backpack-system.get-wallets
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: backpack-system-mcp
    port: 9090
    transport: http
    description: "MCP adapter for Backpack Exchange \u2014 System."
    tools:
    - name: backpack-get-status
      description: Get system status.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: backpack-system.get-status
      outputParameters:
      - type: object
        mapping: $.
    - name: backpack-ping
      description: Ping.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: backpack-system.ping
      outputParameters:
      - type: object
        mapping: $.
    - name: backpack-get-time
      description: Get system time.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: backpack-system.get-time
      outputParameters:
      - type: object
        mapping: $.
    - name: backpack-get-wallets
      description: Get wallets.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: backpack-system.get-wallets
      outputParameters:
      - type: object
        mapping: $.