Skip to main content
POST
/
api
/
system.memory-info
Get system memory statistics (POST)
curl --request POST \
  --url http://localhost:5173/api/system.memory-info \
  --cookie apiKeys=
{
  "total": 123,
  "free": 123,
  "used": 123,
  "swapTotal": 123,
  "swapFree": 123
}

Authorizations

apiKeys
string
cookie
required

Cookie-based authentication storing API keys and provider settings

Response

200 - application/json

Memory statistics

total
integer

Total memory in bytes

free
integer

Free memory in bytes

used
integer

Used memory in bytes

swapTotal
integer

Total swap in bytes

swapFree
integer

Free swap in bytes