Skip to main content
GET
/
api
/
users
/
me
/
limits
Get effective account limits and current usage.
curl --request GET \
  --url https://api.rigbox.dev/api/users/me/limits \
  --header 'Authorization: Bearer <token>'
{
  "limits": {
    "max_disk_total_mb": 1,
    "max_ram_per_vm_mb": 1,
    "max_ram_total_mb": 1,
    "max_running_vcpus": 1,
    "max_vcpu_per_vm": 1,
    "max_vms": 1
  },
  "plan": "<string>",
  "usage": {
    "running_vcpus": 1,
    "total_disk_mb": 1,
    "total_ram_mb": 1,
    "workspace_count": 1
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

User limits and usage

limits
object
required
plan
string
required
usage
object
required