Skip to content
Aivi is not live yet. Join the waitlist to be the first to get access!

Quick Start

  1. Download Aivi from the App Store.

  2. Get your credentials. Open the app, go to the Account tab, and sign in with your Apple account. From here, you will need to subscribe to a plan to unlock API access.

  3. Create your first activity. Navigate to the My Activities tab, then create a new activity, choose name and a unique ID (or slug) for it, like dishwasher or 3dprinter. Make sure to subscribe to the activity as well.

  4. Go to the “My Activities” tab, create your first activity and subscribe to it.

  5. Send your first update. Use the API token from step 2 and the activity slug from step 3 to send a test update. Here is an example using curl:

    curl \
    https://api.getaivi.app/activity/[slug] \
    -X PATCH \
    -H "Content-Type: application/json" \
    -H 'Authorization: Token [token]' \
    --data-binary @- << EOF
    {
    "state": "ONGOING",
    "content": {
    "template": "generic",
    "progress": 0.35,
    "state": "In progress",
    "icon": "washer",
    "remaining_time": 2120
    }
    }
    EOF
  6. You should have received a live activity on your device! Enjoy!

    Presents a newly received live activity on an iPhone.