Skip to main content

Endpoint

GET https://app.openhome.com/api/capabilities/get-capability/{capability_id}/

Headers

X-API-KEY
string
required
Your OpenHome API key.

Path parameters

capability_id
integer
required
The Ability ID.

Example request

cURL
curl https://app.openhome.com/api/capabilities/get-capability/123/ \
  -H "X-API-KEY: YOUR_KEY"
Python
import requests

requests.get(
    "https://app.openhome.com/api/capabilities/get-capability/123/",
    headers={"X-API-KEY": "YOUR_KEY"},
)