{
  "info": {
    "name": "Bity — mcp.ai",
    "description": "REST API for the Bity MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/bity",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "bity_executed_orders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/executed/orders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "executed",
            "orders"
          ]
        },
        "description": "Histórico de ordens já executadas da conta. `market` opcional pra filtrar por par.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"market\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bity_get_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "balance"
          ]
        },
        "description": "Saldo da conta: disponível e bloqueado por moeda (ex.: BTC, BTC_locked, BRL, BRL_locked). O saldo total de cada moeda é disponível + bloqueado.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bity_list_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accounts"
          ]
        },
        "description": "Lista as contas Bity conectadas a este install — id, label.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bity_open_orders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/open/orders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "open",
            "orders"
          ]
        },
        "description": "Lista as ordens em aberto (pendentes) da conta. `market` opcional pra filtrar por par.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"market\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bity_order_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/order/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "order",
            "status"
          ]
        },
        "description": "Status de uma ordem específica pelo seu id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": \"\",\n  \"account\": \"\",\n  \"order_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bity_orderbook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/orderbook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "orderbook"
          ]
        },
        "description": "Livro de ofertas (bids/asks) de um par. Público.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"market\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bity_ticker",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ticker",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ticker"
          ]
        },
        "description": "Ticker 24h de um par (último preço, melhor compra/venda, volume). Público, não exige saldo.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"market\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bity_trades",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/trades",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "trades"
          ]
        },
        "description": "Negociações recentes (trades públicos) de um par. Público.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"market\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}