Skip to main content

Documentation Index

Fetch the complete documentation index at: https://dev.1st.app/llms.txt

Use this file to discover all available pages before exploring further.

HTTP status: 401

Message

Missing Authorization header. Add Authorization: Bearer YOUR_API_KEY to your request.

Common cause

The request reached us without an Authorization header. Usually:
  • You forgot to set the header in your code.
  • Your ST_API_KEY environment variable is empty when the script runs (set in one terminal, running in another, or missing from your tool’s secret settings).
  • A proxy between you and us stripped the header.

Fix

Add the header on every request:
Authorization: Bearer YOUR_API_KEY
If your code already sets it, log the request headers right before you send to confirm the value is actually there.