スキル一覧に戻る
JonathanGrocott

bluetooth-qual-api

by JonathanGrocott

Agent skills

0🍴 0📅 2026年1月11日
GitHubで見るManusで実行

SKILL.md


name: bluetooth-qual-api description: Search and retrieve Bluetooth SIG Qualified Products data. Use when users need to look up Bluetooth certified products, search by company name/product name/model number, or retrieve qualification details from the Bluetooth SIG database. Provides Python client, request/response handling, and data extraction guidance.

Bluetooth Qualified Products API

Overview

Enables searching the Bluetooth SIG Qualified Products database to retrieve certification information for Bluetooth devices. Use the Python client in scripts/bluetooth_api_client.py for queries or consult references/api_spec.md for implementation details.

Quick Start

Basic search workflow:

# Use the bundled client script
from scripts.bluetooth_api_client import BluetoothQualifiedProductsAPI

api = BluetoothQualifiedProductsAPI()

# Search by company, product, or model
results = api.search("Apple")

# Extract standardized data
for result in results[:5]:
    product = api.extract_product_data(result)
    print(f"{product['company_name']}: {product['product_name']}")

Via terminal:

python scripts/bluetooth_api_client.py --search "Apple" --max-results 10

Core Operations

Search by company name, product name, or model number:

results = api.search("Sony")  # Company search
results = api.search("WH-1000XM4")  # Product search
results = api.search("A2342")  # Model number search

2. Extract Product Data

The API response has nested structures. Always use extract_product_data() to prioritize Products[0] data over top-level fields:

for result in results:
    product = api.extract_product_data(result)
    # Guaranteed fields: company_name, product_name, model_number, 
    # description, publish_date, raw_data

3. Advanced Filtering

For multi-criteria searches (e.g., company AND product), make separate calls and filter client-side:

# Search for company
company_results = api.search("Apple")

# Filter results by product name
filtered = [r for r in company_results 
            if "AirPods" in api.extract_product_data(r)['product_name']]

Data Structure Priority

Always prioritize nested Products[0] data:

  • Products[0].MarketingNameproduct_name
  • Products[0].Modelmodel_number
  • Products[0].Descriptiondescription
  • Products[0].PublishDatepublish_date

Fallback to top-level fields only if Products array is empty.

Common Patterns

Display recent products:

# Sort by publish date
sorted_results = sorted(results, 
    key=lambda x: api.extract_product_data(x)['publish_date'] or '', 
    reverse=True)

Handle large result sets:

# Paginate or limit results
results = api.search("Qualcomm", max_results=100)

Error handling:

results = api.search("CompanyName")
if results is None:
    print("API error occurred")
elif len(results) == 0:
    print("No results found")

Implementation Notes

  • Timeout: API calls use 45s timeout (can be slow for large companies)
  • Response formats: Handles Results, results, or direct array
  • No rate limits: No documented limits, but use reasonable delays for bulk queries
  • Empty searches: Returns empty array, not error

Resources

scripts/bluetooth_api_client.py

Complete Python client with search and data extraction methods. Can be executed directly or imported as a module.

references/api_spec.md

Full API specification including request payload structure, response schema, Node.js/React examples, and testing instructions.

スコア

総合スコア

40/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です