apiverve_bluetoothlookup 1.2.0 copy "apiverve_bluetoothlookup: ^1.2.0" to clipboard
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.

pub package License: MIT

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 #

Authentication #

All requests require an API key. Get yours at apiverve.com.

License #

MIT License - see LICENSE for details.


Built with Dart for APIVerve

0
likes
130
points
--
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

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.

Homepage
Repository (GitHub)
View/report issues
Contributing

License

MIT (license)

Dependencies

http, http_parser

More

Packages that depend on apiverve_bluetoothlookup