You don’t need to be a developer to use the 1st API. You just need to talk to an AI.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.
Create an API key
Sign in at dashboard.1st.app, open
Integrations → API access, click Create API key.
- Name it something you’ll recognize, “Sheets dashboard”, “Hudl sync”, “Coach’s Airtable script”.
- Pick Read only unless your integration needs to rename devices or tag them. Most integrations are read-only.
- Pick an expiry. 90 days is a good default; rotate keys at least yearly.
Ask an AI to build your integration
Open Claude or ChatGPT. Paste this prompt, filling in what you
actually want:The AI will read the docs and write working code on the first
try. If something looks off, paste the error message back and
say “fix this”, the error messages from our API are designed
to tell the AI exactly what to change.
Paste the generated code into your tool
Wherever the AI told you the code goes:
- Google Sheets. Extensions → Apps Script
- Airtable. Automations → Run script
- Bubble. Backend workflows → API plugin
- n8n / Make. Code node or HTTP Request node
- Custom Python, save as
pull.py, setST_API_KEY, runpython3 pull.py
What the AI will probably write
Just so you know what to expect, here’s roughly what comes back when you ask for “a Python script that fetches the current readings for every device”:Common integrations
Live dashboard in Google Sheets
Paste this into a Sheets cell, replacing the key with your own:last=7d gives you the last 7 days. Change it to last=24h for
the last day, last=30d for the last month — whatever you want.
shape=wide returns one row per timestamp with one column per
(device × metric), the layout spreadsheets actually want. Save
the sheet and it refreshes automatically.
Tag a device with your AMS player ID
Ask the AI:Next
Build with AI
Five copy-paste prompts that build complete integrations.
Endpoint reference
Every endpoint, every parameter, every response shape.
AMS integration
Map devices to your players via metadata.
Spreadsheet recipes
Apps Script templates and direct IMPORTDATA examples.