---
title: "Getting Started"
description: "Get started with Autheona trust verification API in 5 minutes. Quick start guide with setup instructions, API integration, basic usage examples, and next steps for email validation."
keywords: "getting started autheona, email validation quickstart, api setup guide, intelligent verification tutorial, autheona integration, email validation setup, quick start email api, how to use autheona"

robots: index, follow
permalink: /docs/getting-started/

order: 1
category: Getting Started

eleventyNavigation:
  key: Getting Started
  order: 1

layout: docs.html
---

# Getting Started

![](./document-wallpaper.svg)

Welcome to **Autheona**, an API platform for intelligent verification. Autheona helps you let good users in instantly and block bad ones automatically, with real-time intelligent verification built for modern signup flows. Integrate in 5 minutes with a single REST endpoint. No bloated SDKs required.

## Quick Start

1. Sign up at [app.autheona.com](https://app.autheona.com/sign-up)
2. Create a project and get your access token
3. Make your first API call to validate an email
4. Configure validation rules based on your needs

## What You'll Need

- An Autheona account with an active plan
- Your project's access token
- A backend server (frontend integration not recommended for security)

## Basic API Call

```bash
curl -X POST https://api.autheona.com/v1/validate \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"email": "user@example.com"}'
```

The API returns a JSON response with validation results including:

- Email validity
- Disposable domain detection
- Risk scoring
- Deliverability indicators

## Next Steps

- Read [Autheona Concepts](/docs/getting-started/concepts/) to understand how accounts and projects work
- Check [API Reference](/docs/api-reference/) for detailed endpoint documentation
- Review [FAQ](/docs/getting-started/faq/) for common questions
- Configure validation rules in your project dashboard

## Support

Need help? Email [hello@autheona.com](mailto:hello@autheona.com) for support within 24 hours.
