revolution/laravel-switchbot
SwitchBot API for Laravel
7,652
| Install | |
|---|---|
composer require revolution/laravel-switchbot |
|
| Latest Version: | 1.4.0 |
| PHP: | ^8.3 |
| License: | MIT |
| Last Updated: | Jul 20, 2026 |
| Links: | GitHub · Packagist |
Maintainer: revolution
SwitchBot API for Laravel
This package provides a simple integration with the SwitchBot API using Laravel's HTTP client macros.
For specific API details, please refer to the official SwitchBot API repository: https://github.com/OpenWonderLabs/SwitchBotAPI
Requirements
- PHP >= 8.3
- Laravel >= 12.0
Installation
composer require revolution/laravel-switchbot
Configuration
Get tokens from the SwitchBot app.
.env
SWITCHBOT_TOKEN=
SWITCHBOT_SECRET=
Usage
Built as a Laravel HTTP client macro.
use Illuminate\Support\Facades\Http;
$response = Http::switchbot()->get('devices');
dump($response->json());
$deviceId = $response->json('body.deviceList.0.deviceId');
if (filled($deviceId)) {
$response = Http::switchbot()->get("devices/$deviceId/status");
dump($response->json());
}
use Illuminate\Support\Facades\Http;
$response = Http::switchbot()->get('scenes');
dump($response->json());
Testing
use Illuminate\Support\Facades\Http;
Http::fake([
'*' => Http::response([
"statusCode" => 100,
"body" => [
"deviceList" => [],
"infraredRemoteList" => [],
],
"message" => "success",
]),
]);
$response = Http::switchbot()->get('devices');
$this->assertSame(100, $response->json('statusCode'));
LICENSE
MIT
Related Packages
spaanproductions/laravel-switchbot-frame
Standalone Laravel + Livewire admin page for the SwitchBot AI Art Frame: upload...
95
0
php-tmdb/laravel
Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...
53,312
160