Skip to main content
GET
/
accounts
/
limits
cURL
curl --request GET \
  --url https://api.mudstack.com/accounts/limits \
  --header 'Authorization: Bearer <token>' \
  --header 'x-account-id: <x-account-id>'
{
  "isTemporary": true,
  "expiresInDays": 123,
  "storage": {
    "current": 123,
    "max": 123
  },
  "assets": {
    "current": 123,
    "max": 123
  },
  "users": {
    "current": 123,
    "max": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.mudstack.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

x-account-id
string<uuid>
required

Response

200 - application/json

Limits retrieved successfully

Limits associated with an account.

isTemporary
boolean

Indicates if the account is temporary.

expiresInDays
integer

Number of days until the account expires.

storage
object
assets
object
users
object