Skip to content

Quick Start Guide

Follow these steps to get your first project up and running in minutes.

  1. Create an account on the registration page with a registration code (see below)

  2. Verify your email address

  3. Log in to your new account

  1. Navigate to → API Keys
  2. Click “Generate New Key”
  3. Enter a name for your key (e.g., “Development Key”)
  4. Copy your API key and store it securely
  1. Go to Vaults → Create New
  2. Enter a name for your vault and a description (optional)
  3. Click “Create Vault”

Choose one of the following options to add data to your vault:

  1. Go to Data Sources
  2. Select “Upload Files”
  3. Drag and drop your files or click to browse
  4. Click “Upload” to complete

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.

Now that you’re set up, explore our API Reference for detailed information about all available endpoints and features.