Skip to content
Fluxer API

Admin instance

Instance configuration is everything an operator can change at runtime. It covers single sign-on, Gateway rollout, registration policy, branding and legal links, instance policy, third party integrations, media retention, and the ordered limit configuration. The Instance resource serves the subset published to unauthenticated clients.

Every write is a merge over the stored configuration. An omitted key leaves the stored value unchanged.

Reading configuration requires the Admin ACL instance:config:view, and writing it requires instance:config:update. The limit configuration has its own pair, instance:limit_config:view and instance:limit_config:update. The heap snapshot requires system:heap_snapshot.

That relaxation applies only to a session credential, so an Admin API key and a bearer token are evaluated normally even before setup is complete. Completing setup grants the acting session the wildcard ACL. Registration URLs, pending registrations, limit configuration, and the heap snapshot always need their own ACL.

The complete runtime configuration of the deployment. Every configuration operation here except the limit configuration and the heap snapshot returns it.

FieldTypeDescription
ssoSSO configuration objectSingle sign-on settings
gateway_rolloutGateway rollout configuration objectGateway admission and dispatch tuning
registrationregistration configuration objectRegistration policy, issued URLs, and pending registrations
self_hostedbooleanWhether the deployment runs in self-hosted mode
app_publicpublic application configuration objectBranding, legal, setup, and registration field policy
policyinstance policy objectCommunity, direct message, premium, and gating policy
integrationsinstance integrations objectThird party provider settings and their resolved availability
mediainstance media objectAttachment retention settings

Single sign-on settings for the deployment’s OpenID Connect provider.

FieldTypeDescription
enabledbooleanWhether single sign-on is offered
enforced1booleanWhether single sign-on is the only accepted login method
display_name?stringProvider name shown on the login screen
issuer?stringOpenID Connect issuer
authorization_url?stringAuthorisation endpoint
token_url?stringToken endpoint
userinfo_url?stringUserinfo endpoint
jwks_url?stringJWKS endpoint
client_id?stringRegistered client identifier
client_secret_setbooleanWhether a client secret is stored
scope?stringSpace-separated scope string
allowed_domains2array[string]Email domains permitted to sign in (max 100 entries)
auto_provisionbooleanWhether a first-time sign-in creates an account
redirect_uri3?stringRedirect URI to register with the provider

1 A deployment that has never stored the value reports the same value as enabled

2 Each entry is stored lowercased and IDNA encoded, duplicates are collapsed, and an empty entry is dropped

3 The configured web application endpoint followed by /auth/sso/callback. No operation can set it

Admission and dispatch tuning for the Gateway cluster.

FieldTypeDescription
session_rollout_percentagenumberPercentage of sessions admitted to the new Gateway (0-100, default 100)
session_rollout_modestringmodulo or random (default modulo)
guild_rollout_percentagenumberPercentage of guilds admitted to the new Gateway (0-100, default 100)
rpc_request_timeout_msintegerDeadline for one Gateway RPC (1000-60000, default 10000)
max_concurrent_session_startsintegerSession starts admitted at once (1-10000, default 512)
max_concurrent_guild_startsintegerGuild starts admitted at once (1-10000, default 256)
gateway_dispatch_relay_shardsintegerDispatch relay shard count (1-10000, default 32)
gateway_dispatch_relay_max_queueintegerDispatch relay queue ceiling (0-1000000, default 50000)
voice_e2ee_scopestringguild_feature_only or platform_wide (default guild_feature_only)
voice_reconciliation_v3_percentagenumberPercentage of voice states on the newer reconciliation path (0-100, default 100)
voice_reconciliation_v3_interval_msintegerVoice reconciliation interval (500-60000, default 2000)

Every field is present on read. A deployment that has stored nothing reports the defaults above.

Registration policy in force, plus every issued registration URL and every account awaiting a decision.

FieldTypeDescription
modestringRegistration mode
admin_registration_urls_enabled1booleanWhether Admin-issued registration URLs are accepted
urls2array[registration URL object]Every issued registration URL, including revoked and exhausted records
pending_registrations3array[pending registration object]Accounts awaiting a decision

1 While the value is false, registration refuses every supplied registration URL code, so an issued URL stops working without being revoked

2 Ordered by creation time, newest first

3 Ordered by request time, oldest first

Both collections are embedded in the configuration response. There is no separate listing operation and no pagination, so every configuration read returns every issued URL.

ValueDescription
openAnyone can register
approvalAnyone can register, and an Admin decision is required before the account can be used
closedPublic registration is closed

A valid registration URL is accepted in every mode, including closed, and its own approval_required replaces the mode for the account it creates.

A registration URL is an invitation an Admin can issue while public registration is closed or gated. It has its own expiry, use budget, and approval requirement.

Fluxer accepts a URL while it has no revocation time, has not passed its expiry, and has a use count below max_uses. A URL failing any of those tests is still reported here.

FieldTypeDescription
id1stringIdentifier of the registration URL (1-128 characters)
label?stringAdmin note attached to the URL, or null when unset
created_by_user_idsnowflakeAdmin account that issued the URL
created_atISO8601 timestampTime the URL was issued
expires_at?ISO8601 timestampTime the URL stops working, or null when it never expires
max_uses?integerMaximum permitted uses, or null for unlimited use
use_countintegerHow many registrations have completed through the URL
revoked_at?ISO8601 timestampTime the URL was revoked, or null while it has not been revoked
approval_required2booleanWhether an account created through the URL still needs an Admin decision
last_used_at?ISO8601 timestampTime the URL was last used, or null when it never has been
last_used_by_user_id?snowflakeMost recent account created through the URL, or null when there is none

1 A randomly generated UUID that is also the bearer code authorising registration, so every reader of the configuration can redeem an unrevoked URL

2 The value replaces the instance registration mode for an account created through this URL, in both directions. A URL with the value false lets an account skip approval on an instance in approval mode

{
"id": "3f2a91c4-6d1e-4a77-9f0b-2c5d8e114a20",
"label": "Design team",
"created_by_user_id": "1478812292088791040",
"created_at": "2026-08-20T10:00:00.000Z",
"expires_at": null,
"max_uses": 25,
"use_count": 3,
"revoked_at": null,
"approval_required": false,
"last_used_at": "2026-08-29T18:22:10.000Z",
"last_used_by_user_id": "1500901337221828608"
}

One account that registered and is still waiting for an Admin decision.

FieldTypeDescription
user_idsnowflakeAccount awaiting a decision
usernamestringUsername chosen at registration
discriminatorintegerDiscriminator tag from 0 to 9999
global_name?stringDisplay name of the account, or null when unset
email?stringEmail address of the account, or null when none is stored
requested_atISO8601 timestampTime the account registered
registration_url_id?stringRegistration URL the account signed up through (1-128 characters), or null when it registered directly
client_ip1?stringIP address the account registered from, or null when none was recorded

1 Stored at registration time and never refreshed, so it can be stale by the time an Admin reads it

Branding, legal, setup and registration field policy, in the Admin form of what the Instance resource publishes to clients.

FieldTypeDescription
brandingpublic branding objectProduct name, image URLs, and theme colour
setup1objectHas the single boolean configured
legalpublic legal configuration objectTerms and privacy URLs
registration2public registration fields objectRegistration field collection policy

1 The Instance resource publishes admin_url in this object as well

2 The object has the single boolean collect_date_of_birth

Community, direct message, premium and gating policy for the whole deployment.

FieldTypeDescription
single_community_enabledbooleanWhether the deployment presents one community
single_community_guild_id?stringGuild used as that community, or null before one has been provisioned
direct_messages_disabledbooleanWhether direct messages are disabled
direct_messages_locked1booleanWhether the direct message setting is locked against further change
premium_modestringPremium mode
servicesobjectOperator overrides for gif_enabled, youtube_enabled, and bluesky_enabled. Each is nullable, and null means no override
services_resolved2objectThe same three keys as concrete booleans, resolved from the override and the provider’s own availability
services_available3objectProvider availability for gif, youtube, and bluesky, with no operator override applied
deferred_phone_gatedeferred phone gate objectDelayed phone verification policy

1 The lock is set each time direct messages are re-enabled. Update instance configuration clears it when the policy object has direct_messages_locked set to false

2 Each key is the operator override when one is set, and otherwise the matching services_available value

3 gif and youtube report whether an API key resolves from either the stored configuration or the deployment configuration. bluesky reports the integration’s resolved enablement

ValueDescription
mirrorResolve premium access from the account’s own entitlement and premium flags
everyoneGrant premium access to every account on a self-hosted deployment

Changing this value reloads the resolved limit configuration across every node.

A rule that imposes phone verification in a configured window of hours after registration.

FieldTypeDescription
enabledbooleanWhether the delayed phone requirement is applied (default false)
window_hoursnumberHours after registration in which the requirement can be imposed (default 6)
member_thresholdnumberGuild member count above which the requirement is imposed (default 50)

Every provider reports its stored settings, a _set boolean in place of each secret, and the availability resolved from the stored settings and the deployment configuration.

FieldTypeDescription
gifobjectklipy_api_key_set and effective_available
youtubeobjectapi_key_set and effective_available
captchacaptcha integration objectCAPTCHA provider settings
emailemail integration objectOutbound email settings
blueskyBluesky integration objectBluesky client settings

CAPTCHA provider settings, and the provider resolved from them.

FieldTypeDescription
provider?stringOperator override of hcaptcha, turnstile, or none, or null for no override
effective_providerstringProvider actually in use, one of hcaptcha, turnstile, or none
hcaptcha_site_key?stringhCaptcha site key
hcaptcha_secret_key_setbooleanWhether an hCaptcha secret is stored or supplied by deployment configuration
turnstile_site_key?stringTurnstile site key
turnstile_secret_key_setbooleanWhether a Turnstile secret is stored or supplied by deployment configuration
effective_enabledbooleanWhether CAPTCHA verification is in force

Outbound email settings, and the provider resolved from them.

FieldTypeDescription
enabled?booleanOperator override, or null for no override
effective_enabledbooleanWhether outbound email is in force
provider?stringOperator override of smtp or none, or null for no override
effective_providerstringProvider actually in use, either smtp or none
from_email?stringEnvelope sender address
from_name?stringEnvelope sender name
smtp1objecthost, port, username, secure, and password_set
disable_new_ip_authorizationbooleanWhether new-IP authorisation email is suppressed by the stored setting
effective_disable_new_ip_authorization2booleanWhether it is suppressed once outbound email state is taken into account

1 host, username, and secure are nullable, port is a nullable integer from 1 to 65535, and password_set is a plain boolean

2 True whenever the stored setting is true or outbound email is not in force

Client identity the deployment presents to Bluesky, and the number of signing keys it stores.

FieldTypeDescription
enabled?booleanOperator override, or null for no override
effective_enabledbooleanWhether the integration is in force
client_name?stringClient name presented to Bluesky
client_uri?stringClient URI
logo_uri?stringClient logo URI
tos_uri?stringClient terms URI
policy_uri?stringClient policy URI
key_countintegerNumber of stored signing keys

Attachment retention overrides the operator has set, and the values in force.

FieldTypeDescription
attachment_decay1objectNullable operator overrides plus an effective object of the same keys with concrete values

1 The override keys are enabled, min_size_mb, max_size_mb, max_eligible_size_mb, min_lifetime_days, max_lifetime_days, curve, renew_threshold_days, and renew_window_days. Each is null when the deployment default applies, and effective reports the value in force. enabled is a boolean, curve is a number from 0 to 1, the _mb keys are positive numbers, and the _days keys are positive integers

ValueDescription
iconWrites branding.icon_url
symbolWrites branding.symbol_url
logoWrites branding.logo_url
wordmarkWrites branding.wordmark_url
faviconWrites branding.favicon_url

Whether one Create SMTP test connection attempt succeeded, and the failure text when it did not.

FieldTypeDescription
okbooleanWhether the server accepted the connection and credentials
error1?stringFailure text, or null when the test succeeded

1 The message reported by the SMTP client, so it can repeat text supplied by the remote server

{
"ok": false,
"error": "Invalid login: 535 5.7.8 Authentication credentials invalid"
}

One issued registration URL together with the link an Admin hands out.

FieldTypeDescription
registration_urlregistration URL objectRecord that was issued
code1stringBearer code that authorises registration (1-256 characters)
url2stringComplete registration link built from the configured web application endpoint

1 Equal to registration_url.id, so it can be recovered from any later configuration read

2 The configured web application endpoint followed by /register?registration_url= and the percent-encoded code

The stored limit configuration together with the deployment defaults and the metadata an editor needs.

FieldTypeDescription
limit_configlimit configuration objectStored configuration in force
limit_config_jsonstringThe same document rendered as JSON indented by two spaces, for an editor to display
self_hostedbooleanWhether the deployment runs in self-hosted mode
defaults1map[string, map[string, integer]]Deployment default limits, keyed by rule identifier and then by limit key
metadatamap[string, limit key metadata object]Presentation metadata for each limit key
categories2map[string, string]Display label for each metadata category
limit_keysarray[string]Every limit key in registry order
bounds?3map[string, object]Optional min and max pair for each limit key

1 Built with the premium mode treated as everyone, so on a self-hosted deployment whose premium mode is mirror it omits the premium rule that is applied

2 The keys are messages, guilds, channels, expressions, files, social, and features

3 Absent from every response

Trait definitions and the ordered rules that decide each limit key.

FieldTypeDescription
traitDefinitionsarray[string]Trait names a rule filter can match
rulesarray[limit rule object]Ordered limit rules

The two field names are camelCase, unlike the rest of the Admin API.

One rule in that ordered set, with the filters that scope it and the limits it sets.

FieldTypeDescription
idstringRule identifier (at least 1 character)
filters?objectOptional traits and guildFeatures string arrays that scope the rule
limitsmap[string, integer]Non-negative value for each limit key the rule sets
modifiedFields?1array[string]Limit keys whose value differs from the deployment default

1 A rule whose identifier matches no default rule and no rule named default reports every key it sets. A rule with no differing key omits the field

Presentation metadata for one limit key, which an editor uses to render its control.

FieldTypeDescription
keystringThe limit key
labelstringDisplay label
descriptionstringDescription of what the limit bounds
categorystringCategory key, resolved against categories
scopestringuser, guild, or both
isTogglebooleanWhether the key is a feature gate whose value is 0 or 1
unit?stringbytes or count
min?numberSuggested minimum for an editor
max?numberSuggested maximum for an editor
GET/v1/admin/instance/config

Returns the instance configuration object. Requires instance:config:view, or a session credential until setup is marked complete.

StatusBodyCondition
200instance configuration objectConfiguration was returned

200 requests per minute for each authenticated user, on the admin:lookup bucket.

PATCH/v1/admin/instance/config

Applies a merge patch to the stored configuration and returns the resulting instance configuration object. Requires instance:config:update, or a session credential until setup is marked complete.

FieldTypeDescription
sso?1objectEvery SSO configuration field except client_secret_set and redirect_uri, plus client_secret
gateway_rollout?objectAny subset of the Gateway rollout configuration fields, each bound as documented there
registration?objectmode and admin_registration_urls_enabled
app_public?2objectbranding, setup, legal, and registration sub-objects, each merged field by field
integrations?3objectgif, youtube, captcha, email, and bluesky sub-objects, the last of which also has the keys array
media?objectattachment_decay overrides, each nullable to restore the deployment default
policy?instance policy update objectCommunity, direct message, premium, and gating policy

1 The supplied fields are merged over the stored configuration and the result is validated as a whole. Every supplied endpoint URL uses https, has no credentials and no fragment, and resolves to a publicly routable address, otherwise the request returns 400 INVALID_FORM_BODY with INVALID_URL_FORMAT or URL_NOT_PUBLICLY_ROUTABLE

2 branding.product_name is 1 to 80 characters, every branding and legal URL is at most 2048 characters and nullable, branding.theme_color is at most 64 characters and nullable, and setup.configured and registration.collect_date_of_birth are booleans. Every string is trimmed before it is stored

3 A secret such as klipy_api_key, api_key, hcaptcha_secret_key, turnstile_secret_key, or the SMTP password is written when supplied and left alone when absent. integrations.bluesky.keys is the only way to write the Bluesky signing keys counted as bluesky.key_count. It takes up to 8 entries of kid (1-255 characters) and nullable private_key (up to 10000 characters), and replaces the stored key set outright

FieldTypeDescription
single_community_enabled?1booleanWhether the deployment presents one community
single_community_name?1stringName used only when the community has to be created (1-100 characters)
direct_messages_disabled?2booleanWhether direct messages are disabled
direct_messages_locked?2booleanWhether the direct message setting stays locked
premium_mode?stringPremium mode
services?objectNullable gif_enabled, youtube_enabled, and bluesky_enabled overrides
deferred_phone_gate?3objectenabled, window_hours, and member_threshold

1 Setting single_community_enabled to true adopts the already designated guild when one still exists, and otherwise provisions a community using single_community_name or the configured product name. On a deployment whose setup is already complete, enabling it while no guild is designated fails with 400 INSTANCE_POLICY_TRANSITION_NOT_ALLOWED, as does enabling it when the acting Admin account cannot be resolved. Setting it to false only clears the flag and leaves the guild in place

2 The setting can be changed only while direct_messages_locked is false, and a change attempted after the lock is set fails with 400 INSTANCE_POLICY_TRANSITION_NOT_ALLOWED unless the same request sets direct_messages_locked to false. Re-enabling direct messages sets the lock again

3 window_hours is a positive number up to 8760 and member_threshold is a positive integer up to 1000000. Each key is applied on its own

direct_messages_locked accepts only false, and a body that sets it to true fails with 400 INVALID_FORM_BODY.

StatusBodyCondition
200instance configuration objectThe patch was applied
400error responseA policy transition is refused, returned as INSTANCE_POLICY_TRANSITION_NOT_ALLOWED

Fluxer validates a Gateway rollout change against the complete stored configuration and then publishes it to the Gateway cluster. A premium mode change reloads the resolved limit configuration on every node. Enabling single community mode creates the community when none is designated, and the acting Admin becomes its owner.

Initial setup completes on the first update that sets app_public.setup.configured to true from a session credential whose account holds neither admin:authenticate nor the wildcard. That update grants the account the wildcard Admin ACL and marks the deployment as bootstrapped.

The operation records no Admin audit entry of its own.

100 requests per minute for each authenticated user, on the admin:user:modify bucket.

POST/v1/admin/instance/config/branding-assets

Uploads an image, stores its Media Proxy URL in the selected branding slot, and returns the resulting instance configuration object. Requires instance:config:update, or a session credential until setup is marked complete.

FieldTypeDescription
kindstringBranding asset kind naming the slot to write
image?1 2?stringBase64 image or data URI (max 16000000 characters)

1 Omitting the key and sending null both clear the slot

2 The image decodes to no more than the resolved avatar_max_size limit, which defaults to 10485760 bytes, and is a PNG, JPEG, WebP, GIF, APNG, AVIF, HEIC, HEIF, JXL, or SVG. An animated AVIF is refused

StatusBodyCondition
200instance configuration objectThe slot was written or cleared
4001error responseThe image cannot be decoded, exceeds the size ceiling, or is not an accepted format

1 Returned as 400 INVALID_FORM_BODY with IMAGE_SIZE_EXCEEDS_LIMIT, INVALID_IMAGE_FORMAT, or FAILED_TO_UPLOAD_IMAGE against image

The stored image is served through the Media Proxy. Non-JPEG images are re-encoded to strip metadata and JPEG images are re-encoded at quality 100. The previously referenced image is not deleted.

100 requests per minute for each authenticated user, on the admin:user:modify bucket.

POST/v1/admin/instance/config/smtp-tests

Opens a connection to the supplied SMTP server, authenticates against it, and reports the outcome as an SMTP test result object without storing anything. Requires instance:config:update, or a session credential until setup is marked complete.

FieldTypeDescription
hoststringSMTP host to connect to (1-255 characters after trimming)
portintegerSMTP port to connect to (1-65535)
usernamestringSMTP username to authenticate with (1-320 characters after trimming)
passwordstringSMTP password to authenticate with (1-4096 characters after trimming)
secure?booleanWhether to connect with implicit TLS (default true)
StatusBodyCondition
200SMTP test result objectThe test ran to completion, including a rejected credential

No configuration is written and the supplied credentials are discarded when the request completes. The connection, greeting, and socket each have a ten-second deadline.

100 requests per minute for each authenticated user, on the admin:user:modify bucket.

POST/v1/admin/instance/registration-urls

Issues a registration URL an Admin can hand out while public registration is closed or gated, and returns a registration URL creation object. Requires instance:config:update.

FieldTypeDescription
label?1?stringAdmin note to attach to the URL (1-120 characters), or null for none
expires_at??ISO8601 timestampTime the URL stops working, or null for a URL that never expires
max_uses??integerMaximum permitted uses (1-1000000), or null for unlimited use
approval_required?booleanWhether an account created through the URL still needs an Admin decision (default false)

1 The label is trimmed before it is length checked, so a whitespace-only label fails body validation. Omit the key or send null for a URL with no label

StatusBodyCondition
200registration URL creation objectThe URL was issued

A newly issued URL has a use count of zero, no revocation time, and the acting Admin as its issuer. It is the first entry of registration.urls on the next configuration read. The operation records no Admin audit entry and changes no account.

100 requests per minute for each authenticated user, on the admin:user:modify bucket.

DELETE/v1/admin/instance/registration-urls/{registration_url_id}

Revokes one registration URL so it can no longer be redeemed and returns the resulting instance configuration object. Requires instance:config:update.

FieldTypeDescription
registration_url_idstringIdentifier of the registration URL to revoke (1-128 characters)
StatusBodyCondition
2001instance configuration objectThe revocation was applied

1 An identifier naming no registration URL answers 200 with the configuration unchanged. Revoking an already revoked URL keeps the original revocation time

The URL records its revocation time and stays in the configuration response afterwards. The operation records no Admin audit entry and changes no account.

100 requests per minute for each authenticated user, on the admin:user:modify bucket.

PATCH/v1/admin/instance/pending-registrations/{user_id}Audit reason

Approves or rejects one pending registration and returns the resulting instance configuration object. Requires instance:config:update.

FieldTypeDescription
user_idsnowflakeAccount awaiting a decision
FieldTypeDescription
statusstringEither approved or rejected
StatusBodyCondition
2001instance configuration objectThe decision was applied

1 An account that no longer exists still answers 200. The pending registration is removed, no trait is written, and no audit entry is recorded

Approval removes both the registration_pending_approval trait and the registration_rejected trait, and joins the account to the single community when that mode is enabled and a guild is designated. A join that fails is logged and does not fail the request. Rejection removes the registration_pending_approval trait and adds the registration_rejected trait, which blocks login and every later session creation. A session issued before the decision stays valid. The pending registration is removed either way.

One Admin audit entry with the action approve_registration or reject_registration targets the account and records the audit reason. It has no metadata.

100 requests per minute for each authenticated user, on the admin:user:modify bucket.

GET/v1/admin/limit-config

Returns the limit configuration response object. Requires instance:limit_config:view.

StatusBodyCondition
200limit configuration response objectThe configuration was returned

The response reflects the configuration in force on the node that serves the request, so two nodes can report different values while a change propagates.

200 requests per minute for each authenticated user, on the admin:lookup bucket.

PUT/v1/admin/limit-config

Replaces the stored limit configuration with the supplied document and returns the resulting limit configuration response object. Requires instance:limit_config:update.

FieldTypeDescription
limit_config1limit configuration objectComplete replacement document

1 traitDefinitions can be omitted and is then stored as an empty array. Every key inside a rule’s limits map is a known limit key and every value is a non-negative safe integer, otherwise the body fails validation. modifiedFields is not accepted on input and is recomputed

StatusBodyCondition
200limit configuration response objectThe configuration was replaced
400error responseBody validation fails, including an unknown limit key, returned as INVALID_FORM_BODY

On a self-hosted deployment whose premium mode is everyone, Fluxer drops the premium trait definition and every rule filtered on the premium trait before storing the document.

Each rule’s modifiedFields is then recomputed and the merged document replaces the stored one. Every API node adopts the new configuration. Clients observe it through the published limit configuration.

The operation records no Admin audit entry.

100 requests per minute for each authenticated user, on the admin:user:modify bucket.

POST/v1/admin/system/heap-snapshots

Writes a V8 heap snapshot of the API process that serves the request and returns the file. Requires system:heap_snapshot.

StatusBodyCondition
2001heap snapshot fileThe snapshot was written

1 The body is the raw .heapsnapshot file streamed as an attachment. The filename is heap- followed by the Unix time in milliseconds at which the snapshot was taken

The 200 has Content-Type: application/octet-stream, Content-Disposition: attachment, and Content-Length.

A client MUST NOT decode the body as JSON. The published OpenAPI document declares a JSON object of success, filename, and size_bytes here, so a generated client has to be overridden.

The snapshot is written to a temporary file on the serving node, streamed to the caller, and deleted once the stream closes. No configuration is changed and no Admin audit entry is recorded.

2 requests per five minutes for each authenticated user, on the admin:system:heap_snapshot bucket.