POST
/api/context/save
FreeStore content in cache
Deposit compressed content into the global context cache.
Supports single or batch mode (max 50 items).
curl -s -X POST "$BASE/api/context/save" \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://my-app.com/docs/api-reference",
"hqcc": "# API Reference\n\nCompressed documentation content...",
"title": "My API Reference",
"visibility": "private"
}'Request Example
{
"url": "https://example.com/article",
"hqcc": "# Article Title\n\nCompressed content...",
"visibility": "private"
}Response Example
{
"success": true,
"status": "created",
"url": "https://example.com/article",
"visibility": "private"
}