Retrieve an aggregator by ID.
Path Parameters
The aggregator ID. Use default for the account’s primary aggregator.
Response
Unique aggregator identifier.
The full URL of the aggregator (e.g., https://myapp.mytusky.xyz).
The subdomain (e.g., myapp).
Custom domain, or null if not configured.
Whether authentication is required. When true, requests must include an Api-Key header.
When true, serves any content from the Walrus network. When false, serves only your account’s content.
Whether Cloudflare edge caching is enabled. When true, content is cached at 300+ edge locations for low-latency delivery.
Whether the aggregator falls back to the centralized backup store when the Walrus network is unavailable.
Whether analytics tracking is enabled.
ISO 8601 creation timestamp.
Example
curl https://api.tusky.io/v2/aggregators/default \
-H "Api-Key: YOUR_API_KEY"
Response
{
"id": "agg_default",
"url": "https://myapp.mytusky.xyz",
"subdomain": "myapp",
"customDomain": null,
"restricted": false,
"public": false,
"cache": true,
"fallbackToBackup": false,
"analyticsEnabled": true,
"createdAt": "2026-01-15T10:00:00Z"
}