apiverve_bluetoothlookup 1.2.0
apiverve_bluetoothlookup: ^1.2.0 copied to clipboard
Bluetooth Company Lookup allows you to identify Bluetooth device manufacturers by their Bluetooth SIG assigned company identifier. This helps identify the manufacturer of Bluetooth devices, beacons, a [...]
Bluetooth Company Lookup API - Dart/Flutter Client #
Bluetooth Company Lookup allows you to identify Bluetooth device manufacturers by their Bluetooth SIG assigned company identifier. This helps identify the manufacturer of Bluetooth devices, beacons, and accessories.
This is the Dart/Flutter client for the Bluetooth Company Lookup API.
Installation #
Add this to your pubspec.yaml:
dependencies:
apiverve_bluetoothlookup: ^1.2.0
Then run:
dart pub get
# or for Flutter
flutter pub get
Usage #
import 'package:apiverve_bluetoothlookup/apiverve_bluetoothlookup.dart';
void main() async {
final client = BluetoothlookupClient('YOUR_API_KEY');
try {
final response = await client.execute({
'companyid': '76'
});
print('Status: ${response.status}');
print('Data: ${response.data}');
} catch (e) {
print('Error: $e');
}
}
Response #
{
"status": "ok",
"error": null,
"data": {
"companyId": 76,
"companyIdHex": "0x004C",
"found": true,
"company": "Apple, Inc."
}
}
API Reference #
- API Home: Bluetooth Company Lookup API
- Documentation: docs.apiverve.com/ref/bluetoothlookup
Authentication #
All requests require an API key. Get yours at apiverve.com.
License #
MIT License - see LICENSE for details.
Built with Dart for APIVerve