Documentation
/apps
Retrieve information about your ARKH apps. Apps are created and managed through the Developer Portal and require approval before publishing. The API provides read-only access to your app data.
Quick Links
GET
/v1/apps
List all apps
GET
/v1/apps/:id
Get a specific app
GET
/v1/apps
List all apps
Request
cURL
curl -X GET "https://developer.arkh.com/api/apps" \
-H "Authorization: Bearer arkh_your_api_key_here"Response
{
"data": [
{
"id": "app_01234567-89ab-cdef-0123-456789abcdef",
"name": "Music Control",
"description": "Control your music with gestures",
"app_type": "control",
"status": "published",
"visibility": "public",
"webhook_url": "https://your-server.com/webhook",
"category": "media",
"app_color": "#3b82f6",
"special_instructions": null,
"created_at": "2024-01-15T10:30:00Z"
}
]
}GET
/v1/apps/:id
Get a specific app
Parameters
Name
Type
Req
Description
idstring
yes
App ID
Request
cURL
curl -X GET "https://developer.arkh.com/api/apps/app_01234567" \
-H "Authorization: Bearer arkh_your_api_key_here"