Quick Start Guide

Get up and running with Freigent in just a few minutes

Get started with Freigent in just a few minutes. This guide will walk you through setting up your account, creating your first load, and integrating with our API.

Step 1: Account Setup

  1. Create Your Account

    • Visit app.freigent.ai
    • Click "Sign Up" and complete the registration
    • Verify your email address
  2. Choose Your Plan

    • Select the plan that fits your business needs
    • Complete billing setup if required

Step 2: API Authentication

Get Your API Keys

  1. Navigate to SettingsAPI Keys
  2. Click Generate New Key
  3. Copy and securely store your API key

Test Your Connection

curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.freigent.ai/v1/loads

Expected response:

{
  "loads": [],
  "total": 0,
  "page": 1
}

Step 3: Create Your First Load

Using the Dashboard

  1. Navigate to LoadsCreate Load

  2. Fill in the load details:

    • Origin: Pickup location
    • Destination: Delivery location
    • Weight: Total weight in pounds
    • Equipment: Truck type required
  3. Click Create Load

Using the API

curl -X POST https://api.freigent.ai/v1/loads \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "origin": {
      "city": "Chicago",
      "state": "IL",
      "zip": "60601"
    },
    "destination": {
      "city": "Atlanta", 
      "state": "GA",
      "zip": "30301"
    },
    "weight": 25000,
    "equipment_type": "dry_van"
  }'

Next Steps

AI Assistant

Ask about Freigent docs

Welcome to AI Assistant

Ask me anything about Freigent documentation, Chrome Extension setup, API integration, or platform features.

Press Enter to send, Shift+Enter for new line