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

Libraries

apiverve_bluetoothlookup
Bluetooth Company Lookup API client for Dart/Flutter