{
  "description": "Bisq API Wrapper",
  "auth": "Required (x-api-key header or key query param)",
  "endpoints": [
    {
      "path": "/api/status",
      "method": "GET",
      "description": "Get wallet balance and sync status"
    },
    {
      "path": "/api/price/{currency}",
      "method": "GET",
      "description": "Get offers in currency (e.g. USD)"
    },
    {
      "path": "/api/marketprice/{currency}",
      "method": "GET",
      "description": "Get market price in currency (e.g. USD)"
    },
    {
      "path": "/api/market/buy/{currency}",
      "method": "GET",
      "description": "Get BUY offers in currency"
    },
    {
      "path": "/api/market/sell/{currency}",
      "method": "GET",
      "description": "Get SELL offers in currency"
    }
  ],
  "meta": {
    "description": "All responses include a _meta object with block height info",
    "fields": [
      "block_height",
      "network_block_height",
      "sync_percentage",
      "block_updated_at",
      "server_time"
    ]
  },
  "note": "All endpoints return the raw output from bisq-cli.",
  "_meta": {
    "block_height": 956275,
    "network_block_height": 956276,
    "sync_percentage": "100.00%",
    "block_updated_at": "2026-07-01T23:00:06.234Z",
    "server_time": "2026-07-01T23:00:13.927Z"
  }
}