Interactive 3D

/

Biomimetic Robot

Spot is a quadrupedal mobile robot developed by Boston Dynamics, first publicly revealed in 2016 and made commercially available in June 2020

Overview

Monitor Wise account activity with real-time dashboards showing balances across currencies, transfer history, and exchange rate trends. Perfect for businesses managing international payments, freelancers receiving foreign currency, or finance teams reconciling multi-currency accounts. Visualize cash flow across borders without manual tracking.

How it works

Connect your Wise business account through API authentication. Lumis pulls balance data, transaction history, and exchange rates automatically. Create dashboards tracking payment volumes by currency, vendor spending patterns, or transfer costs over time. Set alerts for low balances or unusual transaction patterns.

Overview

Spot is a quadrupedal mobile robot developed by Boston Dynamics, first publicly revealed in 2016 and made commercially available in June 2020

Description

Since commercial availability in 2020, Spot has been deployed across numerous industries for applications that leverage its unique mobility and sensing capabilities. In construction, Spot performs autonomous site documentation, capturing 360-degree imagery and LiDAR scans that are compared against BIM (Building Information Modeling) data to track progress and identify deviations from plans. Oil and gas facilities use Spot for remote inspection of equipment in hazardous environments, reading analog gauges, detecting gas leaks with specialized sensors, and monitoring for thermal anomalies that might indicate equipment failure. Electric utilities deploy Spot in substations where high-voltage equipment poses risks to human inspectors, with the robot capturing thermal images to identify overheating connections and visual documentation for maintenance records. Manufacturing plants use Spot for equipment monitoring rounds that previously required human technicians to walk miles through facilities each shift, freeing workers for higher-value tasks while improving inspection consistency and frequency. Public safety agencies have used Spot for hazardous material incident response, post-disaster structural assessment, and bomb squad operations where sending a robot into danger protects human first responders. The entertainment industry has employed Spot for live performances, music videos, and theme park attractions, leveraging the robot's expressive movement capabilities and visual appeal. Mining operations deploy Spot in underground environments where conditions are too dangerous for frequent human presence, using the robot to inspect equipment, monitor ground conditions, and map developing excavations.

Embed Code

// Wise multi-currency balances
const wise = new Wise({apiKey: process.env.WISE_API_KEY});

async function getBalances(profileId) {
  const balances = await wise.balances.list(profileId);
  
  return balances.map(b => ({
    currency: b.currency,
    amount: b.amount.value,
    available: b.amount.value - b.reserved.value
  }));
}
// Wise multi-currency balances
const wise = new Wise({apiKey: process.env.WISE_API_KEY});

async function getBalances(profileId) {
  const balances = await wise.balances.list(profileId);
  
  return balances.map(b => ({
    currency: b.currency,
    amount: b.amount.value,
    available: b.amount.value - b.reserved.value
  }));
}
// Wise multi-currency balances
const wise = new Wise({apiKey: process.env.WISE_API_KEY});

async function getBalances(profileId) {
  const balances = await wise.balances.list(profileId);
  
  return balances.map(b => ({
    currency: b.currency,
    amount: b.amount.value,
    available: b.amount.value - b.reserved.value
  }));
}

Configure - implementation details

// Wise multi-currency balances
const wise = new Wise({apiKey: process.env.WISE_API_KEY});

async function getBalances(profileId) {
  const balances = await wise.balances.list(profileId);
  
  return balances.map(b => ({
    currency: b.currency,
    amount: b.amount.value,
    available: b.amount.value - b.reserved.value
  }));
}
// Wise multi-currency balances
const wise = new Wise({apiKey: process.env.WISE_API_KEY});

async function getBalances(profileId) {
  const balances = await wise.balances.list(profileId);
  
  return balances.map(b => ({
    currency: b.currency,
    amount: b.amount.value,
    available: b.amount.value - b.reserved.value
  }));
}
// Wise multi-currency balances
const wise = new Wise({apiKey: process.env.WISE_API_KEY});

async function getBalances(profileId) {
  const balances = await wise.balances.list(profileId);
  
  return balances.map(b => ({
    currency: b.currency,
    amount: b.amount.value,
    available: b.amount.value - b.reserved.value
  }));
}