Getting Started
YorAuth is a multi-tenant authentication and authorization platform. Add login, registration, roles, permissions, and more to your application by integrating with the YorAuth API.
This guide walks you through the four steps to go from a new account to making your first authenticated API call.
The Setup Journey
Step 1: Create an Account
Sign up at app.yorauth.com. Your account gives you access to the YorAuth dashboard where you manage your applications.
Step 2: Create an Application
Each project you build gets its own YorAuth application. An application is an isolated container for users, roles, permissions, and API credentials.
Step 3: Make Your First API Call
Use your application's credentials to register your first user through the YorAuth API. See the real request and response shapes.
Step 4: Install an SDK
Integrate YorAuth into your codebase using an official SDK to avoid writing raw HTTP calls.
How the API Is Structured
All multi-tenant API endpoints are scoped to your application:
https://api.yorauth.com/api/v1/applications/{applicationId}/...
Your application ID and API key are the two credentials you will use in every request. Both are found in the YorAuth dashboard after creating an application.
If you just want to see an API call immediately, skip to First API Call. You can read the setup steps after.