Endpoint
Headers
string
required
Your OpenHome API key.
Path parameters
integer
required
The Ability ID.
Example request
cURL
Python
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a single Ability by its ID.
GET https://app.openhome.com/api/capabilities/get-capability/{capability_id}/
curl https://app.openhome.com/api/capabilities/get-capability/123/ \
-H "X-API-KEY: YOUR_KEY"
import requests
requests.get(
"https://app.openhome.com/api/capabilities/get-capability/123/",
headers={"X-API-KEY": "YOUR_KEY"},
)
