Setting a reminder from the dashboard
On the Launch Instance page, any profile that is currently out of stock shows a Notify when available button. Open it, optionally paste a webhook URL, and confirm. We record the reminder against your account and email you when the profile is available.Setting a reminder via the API
hardware_profile(required): the GPU profile to watch, for exampleh100orb200. Agpu.prefix is stripped and the value is lowercased.gpu_count(optional): only notify when this exact count is available.8means “notify me when 8x is free”, not “1x or more”. Omit it to match any available count.webhook_url(optional): an HTTPS URL notified alongside the email. See below.hardware_label,company,use_case(optional): free text stored with the reminder.
Webhooks
If you passwebhook_url, Lyceum POSTs to it when the profile becomes available, at the same time as the email. The payload depends on the host.
A Slack incoming webhook (hooks.slack.com) receives Slack’s own message shape, so it renders directly in the channel:
Requirements
The webhook URL must be anhttps:// URL with a public hostname. URLs that point at localhost, a raw IP address, or a hostname that resolves to a private, loopback, or link-local address are rejected with a 422. This keeps the notifier from being pointed at internal services.
Getting a Slack webhook URL
In Slack, create an app (or use an existing one), enable Incoming Webhooks, add a webhook to the channel you want, and copy thehttps://hooks.slack.com/services/... URL. Paste that as webhook_url.

