Quick Start Guide
Follow these steps to get your first project up and running in minutes.
Step 1: Account Setup
Section titled “Step 1: Account Setup”-
Create an account on the registration page with a registration code (see below)
-
Verify your email address
-
Log in to your new account
Step 2: Generate API Key
Section titled “Step 2: Generate API Key”- Navigate to → API Keys
- Click “Generate New Key”
- Enter a name for your key (e.g., “Development Key”)
- Copy your API key and store it securely
Step 3: Create Your First Vault
Section titled “Step 3: Create Your First Vault”- Go to Vaults → Create New
- Enter a name for your vault and a description (optional)
- Click “Create Vault”
Step 4: Connect a Data Source
Section titled “Step 4: Connect a Data Source”Choose one of the following options to add data to your vault:
- Go to Data Sources
- Select “Upload Files”
- Drag and drop your files or click to browse
- Click “Upload” to complete
- Go to Data Sources
- Choose your data source type
- Enter connection credentials
- Click “Connect” to establish connection
Step 5: Make Your First API Call
Section titled “Step 5: Make Your First API Call”Test your setup with this example API call:
const response = await fetch('https://api.laive.ai/api/v1/vaults', { method: 'GET', headers: { 'X-API-KEY': 'YOUR_API_KEY', 'Content-Type': 'application/json' }});
const data = await response.json();console.log(data);Replace YOUR_API_KEY with the key you generated in Step 2.
Next Steps
Section titled “Next Steps”Now that you’re set up, explore our API Reference for detailed information about all available endpoints and features.