# Availability
Source: https://docs.alertyai.com/alertyai/availability
Where AlertyAI is available and what is currently supported.
## Current availability
* **Platform:** Android (primary)
* **Distribution:** APK-based rollout
* **Web product:** Public website and product documentation
## Regional access
AlertyAI is available where Android installation and Google sign-in are supported.
If you face region-specific access issues, contact support.
## What is in scope today
* AI-assisted task capture
* Reminder-centric execution workflow
* Mobile-first user experience
## What is not in scope yet
* Full desktop-first product workflow
* Public multi-tenant admin console
## Support
For install or access help: [bindalshashank.89@gmail.com](mailto:bindalshashank.89@gmail.com).
# How AlertyAI is different
Source: https://docs.alertyai.com/alertyai/differentiators
How AlertyAI compares to generic task apps.
## Positioning
AlertyAI is built for execution quality, not list accumulation.
The product emphasizes fast capture and action-ready reminders.
## Key differentiators
### 1) Capture-first UX
Most apps begin with manual forms.
AlertyAI starts with voice, image, or natural text input.
### 2) Practical AI
AI is used to reduce manual work in task creation and structuring.
It is integrated into daily workflow, not separated as a novelty feature.
### 3) Mobile-native speed
AlertyAI is optimized for Android-first execution loops.
Users can capture and complete tasks with minimal context switching.
### 4) Startup operator fit
The workflow is designed for fast-moving teams and founders:
* quick intake
* clear priority
* timed execution
## Ideal use cases
* Founder daily planning
* Team action tracking after meetings
* Reminder-sensitive execution windows
# FAQs vs documentation
Source: https://docs.alertyai.com/alertyai/faq-vs-docs
When to use FAQs and when to use product docs.
## Why both exist
FAQs and documentation solve different user needs.
## FAQs are for
* short, common questions
* quick decision support
* high-level clarifications
Examples:
* "Is AlertyAI Android-only?"
* "How do I contact support?"
## Documentation is for
* complete workflows
* setup and usage steps
* product behavior and scope
* trust/compliance details
Examples:
* "How do I set reminder offsets?"
* "What security controls are currently in place?"
## Writing standard for AlertyAI docs
* Keep language direct and practical
* Prefer real usage flows over marketing claims
* Document limits and current scope explicitly
# Features
Source: https://docs.alertyai.com/alertyai/features
Current product capabilities and scope.
This page lists what is currently available in AlertyAI.
## AI-assisted capture
* Natural language parsing for title/date/time
* Voice-to-task capture
* Image OCR for task extraction
## Task management
* Task create, edit, complete
* Subtasks and checklist workflow
* Priority and due-time aware reminders
## Reliability and UX
* Android-native experience (Jetpack Compose)
* Offline-friendly behavior for local usage
* Fast interaction model for daily planning
## Security model (summary)
* Google sign-in and token-based authentication
* Hybrid local plus sync-backed data model
See [security and compliance](/alertyai/security-compliance) for details.
# How to Use AlertyAI
Source: https://docs.alertyai.com/alertyai/how-to-use
Daily workflow from task capture to completion.
## 1) Sign in and set your baseline
After installation, sign in with Google and confirm notification permissions.
This ensures reminders can trigger reliably.
## 2) Create tasks using the fastest input method
Choose based on context:
### Voice capture
Use this while moving or multitasking.
Example: *"Prepare sprint summary Friday 5 PM."*
### Image-to-task
Use this for whiteboards, meeting notes, and screenshots.
Upload an image and review extracted tasks before saving.
### Smart text input
Type naturally and let AlertyAI parse title/date/time.
### Manual mode
Use this for precision edits and edge cases.
## 3) Set reminder timing
For time-bound tasks, choose one reminder policy:
* **At time of event**
* **10 minutes before**
* **30 minutes before**
* **1 hour before**
## 4) Run your daily execution loop
* Open your task queue in the morning
* Complete, defer, or edit tasks as context changes
* Use reminders only for tasks with real time sensitivity
* Keep capture quick; refine only when needed
## 5) Team usage basics
* Keep task titles action-first and specific
* Avoid duplicate reminders for the same event
* Use short descriptions for handoffs
For capability details, see [features](/alertyai/features).
# What is AlertyAI
Source: https://docs.alertyai.com/alertyai/introduction
Product overview, ideal users, and core workflow.
AlertyAI is an AI-first task and reminder product focused on execution quality for individuals and startup teams.
Instead of forcing manual form-filling, AlertyAI helps you capture work in natural ways (voice, image, or text), then converts it into structured action.
Current product availability is Android-first. See [availability details](/alertyai/availability).
## Who it is for
* Founders and operators managing high context switching
* Teams that need fast capture and reliable reminders
* Users who prefer mobile-first execution over heavy desktop tooling
## Core workflow
1. Capture task input (voice, image, or text)
2. AI parses intent into structured task data
3. You verify/edit, set reminder timing, and save
4. Execute and complete from one daily queue
## Product principles
* **Speed over friction:** minimal taps to create useful tasks
* **Signal over noise:** reminders are configurable and actionable
* **Practical AI:** automation that reduces manual steps, not novelty-only interactions
Next: [quickstart](/quickstart) or [how to use](/alertyai/how-to-use).
# Security and compliance
Source: https://docs.alertyai.com/alertyai/security-compliance
Security posture, privacy handling, and startup readiness notes.
## Security posture
AlertyAI applies standard security practices expected for a startup-stage product:
* authenticated access for user data
* token-based session model
* transport-layer encryption in transit
* restricted operational access
## Data handling
* Task data is designed for reliable local-first interaction on Android
* Sync-backed workflows are used where applicable
* Access to production data is limited to authorized operations
## Privacy baseline
* User-facing privacy terms are documented
* Support for data-related requests is available via email
* Product communication avoids collecting unnecessary sensitive data by default
## Compliance status
AlertyAI is in startup growth stage.
Formal enterprise certifications may be roadmap items, but operational controls are implemented with security-first intent.
## For partners and evaluators
If you need a security questionnaire or deeper architecture details, contact:
[bindalshashank.89@gmail.com](mailto:bindalshashank.89@gmail.com).
# Create Task
Source: https://docs.alertyai.com/api-reference/endpoint/create
POST /tasks
Creates a new task.
# Complete Task
Source: https://docs.alertyai.com/api-reference/endpoint/delete
DELETE /tasks/{id}
Marks a task as completed based on the task ID.
# List Tasks
Source: https://docs.alertyai.com/api-reference/endpoint/get
GET /tasks
Returns all tasks available to the authenticated user.
# Task Reminder Webhook
Source: https://docs.alertyai.com/api-reference/endpoint/webhook
WEBHOOK /tasks/webhook
Sends reminder delivery and task state events.
# Introduction
Source: https://docs.alertyai.com/api-reference/introduction
AlertyAI API overview for tasks, reminders, and integrations
## Welcome
This reference documents AlertyAI endpoints used by clients and internal integrations.
The schema includes task retrieval, task creation, task completion, and webhook delivery events.
View the OpenAPI specification file
## Authentication
All API endpoints use Bearer token authentication.
```json theme={null}
"security": [
{
"bearerAuth": []
}
]
```
# AlertyAI documentation
Source: https://docs.alertyai.com/index
Product docs for setup, usage, features, and trust details.
## What you will find here
This documentation is the source of truth for AlertyAI users, evaluators, and partners.
Install the app, sign in, create your first task, and set reminders.
## Core product docs
Product overview, target users, and core workflow.
Step-by-step guide for daily usage.
Capabilities, scope, and current limitations.
Where AlertyAI is available and what is currently supported.
## Startup-ready trust section
If you are evaluating AlertyAI as a product or partner:
Data handling, account security, and operational safeguards.
Clear boundary between support content and product documentation.
API concepts and endpoint examples.
# Quickstart
Source: https://docs.alertyai.com/quickstart
Get AlertyAI running in under 10 minutes.
## Before you begin
* Android phone (recommended Android 10+)
* Google account for sign-in
* Internet connection for first sync
## Step 1: Install AlertyAI
Open the official Play Store listing for AlertyAI and install the app.
Link: [https://play.google.com/store/apps/details?id=com.alertyai.app](https://play.google.com/store/apps/details?id=com.alertyai.app)
Open the app and complete Google sign-in.
This creates your account and enables sync-backed workflows.
## Step 2: Create your first task
Tap the mic button and speak naturally.
Example: "Remind me to send the investor update tomorrow at 9 AM."
Upload a screenshot or photo (meeting notes, whiteboard, checklist).
AlertyAI extracts actionable tasks from visible text.
## Step 3: Set reminders and complete
Choose one reminder offset:
* At event time
* 10 minutes before
* 30 minutes before
* 1 hour before
## Next steps
Complete task and reminder workflow.
Understand supported features and limits.
Platform support and roadmap direction.
Privacy, security posture, and trust details.
For support, contact [bindalshashank.89@gmail.com](mailto:bindalshashank.89@gmail.com).