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
-
Create Your Account
- Visit app.freigent.ai
- Click "Sign Up" and complete the registration
- Verify your email address
-
Choose Your Plan
- Select the plan that fits your business needs
- Complete billing setup if required
Step 2: API Authentication
Get Your API Keys
- Navigate to Settings → API Keys
- Click Generate New Key
- 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
-
Navigate to Loads → Create Load
-
Fill in the load details:
- Origin: Pickup location
- Destination: Delivery location
- Weight: Total weight in pounds
- Equipment: Truck type required
-
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"
}'