llms.txt Content
# Superserve
## Docs
- [Get an API key](https://docs.superserve.ai/api-key.md): Create an API key and configure the SDK to authenticate with Superserve.
- [List team audit-log activity](https://docs.superserve.ai/api-reference/activity/list-team-audit-log-activity.md): Returns audit-log activity for the authenticated team, ordered by creation time (newest first) by default. Backs the console Audit Logs page.
- [Get billing pricing](https://docs.superserve.ai/api-reference/billing/get-billing-pricing.md): Returns the authenticated team's active pricing plan and current resource rates for billing UI display. The team is derived from authentication; callers cannot select a team by query parameter.
- [Get billing summary](https://docs.superserve.ai/api-reference/billing/get-billing-summary.md): Returns team-level financial information for the authenticated team's current billing period. All charge fields are monetary USD values, not raw usage metrics. The team is derived from authentication; callers cannot select a team by query parameter.
- [Get public PAYG billing pricing](https://docs.superserve.ai/api-reference/billing/get-public-payg-billing-pricing.md): Returns the active public pay-as-you-go pricing plan and current resource rates. This endpoint is unauthenticated so public pricing pages can render from the same pricing data used by billing.
- [Run a command and stream output over SSE](https://docs.superserve.ai/api-reference/exec/run-a-command-and-stream-output-over-sse.md): Runs a command and streams its output as Server-Sent Events while it runs. Each `data:` line is a JSON object: an output chunk (`{"stdout":"..."}` or `{"stderr":"..."}`), the terminal event (`{"exit_code":N,"finished":true}`), or an error (`{"error":"...","finished":true}`). The stream closes when t…
- [Run a command and wait for it to finish](https://docs.superserve.ai/api-reference/exec/run-a-command-and-wait-for-it-to-finish.md): Runs a command to completion and returns its output in