#!/bin/sh # Read-only examples. Set these environment variables privately first. : "${WAVEFORM_ORIGIN:?Set the studio origin}" : "${WAVEFORM_API_KEY:?Set a workspace API key}" curl --fail-with-body --max-time 30 \ --header "Authorization: Bearer $WAVEFORM_API_KEY" \ "${WAVEFORM_ORIGIN%/}/api/v1/identity" # No --location and no automatic retries: do not forward keys on redirects.