With Apple Shortcuts you can talk to INTAYO without installing an app. The shortcuts call the INTAYO API directly — they run on iPhone, iPad and Mac, on the lock screen, as a widget and through Siri.
Set up in three steps
- Create a key under Settings → API keys. The suggested rights already cover all four shortcuts.
- Add a shortcut below and paste the key once on first run.
- Done — from now on just ask Siri.
Start a challenge
POSTAsks for your claim, then the opponent’s address, and creates the challenge.
„Hey Siri, start a challenge“
Action “Get contents of URL”
https://intayo.com/api/v1/challenges
Header: Authorization: Bearer ity_…
{
"claim": "<claim>",
"opponent_email": "<opponent_email>",
"stake": "coffee",
"due_days": 14
}Reads the created claim back and optionally opens the share sheet for the opponent link.
The ready-made shortcut will be linked here once published. Until then the details above let you build it yourself in a few minutes.
My open challenges
GETFetches all running challenges and reads them out as a list.
„Hey Siri, my open challenges“
Action “Get contents of URL”
https://intayo.com/api/v1/challenges?status=open&limit=10
Header: Authorization: Bearer ity_…
A list of claim, opponent and deadline — as text or spoken.
The ready-made shortcut will be linked here once published. Until then the details above let you build it yourself in a few minutes.
Vote on the daily question
GET + POSTReads out today’s question, asks “yes or no” and submits your vote.
„Hey Siri, daily question“
Action “Get contents of URL”
https://intayo.com/api/v1/questions/daily
Header: Authorization: Bearer ity_…
{ "choice": "yes" }Confirms the vote and reports the current split in percent.
The ready-made shortcut will be linked here once published. Until then the details above let you build it yourself in a few minutes.
My score
GETFetches your XP, rank and your win/loss record.
„Hey Siri, my score“
Action “Get contents of URL”
https://intayo.com/api/v1/me
Header: Authorization: Bearer ity_…
One sentence: score, rank, record and streak.
The ready-made shortcut will be linked here once published. Until then the details above let you build it yourself in a few minutes.
About the key
- The key sits inside the shortcut on your device. Anyone with your unlocked device can use it.
- Give it only the rights the shortcuts need. Managing groups and webhooks are not among them.
- You can revoke it at any time in the settings. After that the shortcuts report an error instead of quietly doing nothing.
- Nothing that costs money runs without asking first.
All endpoints and error codes are in the developer reference.