SessionDock Developer Docs
Authoritative guides, generated Local API reference, and practical patterns for local automation, scripts, launchers, and AI agents running alongside SessionDock.
Aggregates known tags across the session library in descending usage order.
/api/v1/tagsAggregates known tags across the session library in descending usage order.
curl -X GET 'http://127.0.0.1:18432/api/v1/tags' \
-H 'Authorization: Bearer <token>'Tag counts
application/json
{
"data": [
{
"tag": "<string>",
"count": 0
}
]
}{
"data": [
{
"tag": "<string>",
"count": 0
}
]
}Missing or invalid bearer token.
application/json
{
"error": {
"status": 0,
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"status": 401,
"code": "unauthorized",
"message": "Provide Authorization: Bearer <token>."
}
}