Quickstart Guide
Step-by-step instructions to set up your Fresa Technologies account and begin managing freight operations.
Overview
Get started with Fresa Technologies in minutes. This guide walks you through account creation, dashboard setup, company profile configuration, and your first AI-assisted freight quote. Fresa provides a unified platform for freight forwarding, handling quoting, documentation, shipments, and compliance with AI automation.
Prepare your company details like name, address, and freight licenses before starting.
Complete Setup in 4 Steps
Follow these steps to launch your freight operations platform.
Create Account
Visit app.fresa.tech and click Sign Up.
Fill in your email, create a strong password, and verify via the email link sent to you.
Use your desktop browser for the full experience.
Download the Fresa app from App Store or Google Play after email verification.
Log In and Dashboard Setup
Log in at app.fresa.tech/login.
On the dashboard, complete the onboarding wizard:
- Select your primary region (e.g., North America).
- Choose freight modes (air, sea, road).
- Enable AI quoting.
Configure Company Profile
Navigate to Settings > Company Profile.
Enter details:
| Field | Example Value | Required |
|---|---|---|
| Company Name | Acme Freight Forwarders | Yes |
| Address | 123 Shipping St, Miami, FL | Yes |
| Freight License | FL-FF-12345 | Yes |
| Currency | USD | Yes |
| Timezone | America/New_York | No |
Save changes. AI compliance checks run automatically.
Create Your First AI Quote
Go to Quotes > New AI Quote.
Input shipment details:
- Origin: Miami, FL
- Destination: Shanghai, CN
- Cargo: Electronics, 500kg
- Mode: Air
Click Generate Quote. AI analyzes rates, compliance, and suggests options.
Integrate via API for automation:
const response = await fetch('https://api.fresa.tech/v1/quotes', {
method: 'POST',
headers: {
'Authorization': `Bearer ${YOUR_API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
origin: 'Miami, FL',
destination: 'Shanghai, CN',
cargoWeight: 500,
mode: 'air'
})
});
const quote = await response.json();
console.log(quote.rates);
import requests
headers = {
'Authorization': f'Bearer {YOUR_API_KEY}',
'Content-Type': 'application/json'
}
data = {
'origin': 'Miami, FL',
'destination': 'Shanghai, CN',
'cargoWeight': 500,
'mode': 'air'
}
response = requests.post('https://api.fresa.tech/v1/quotes', json=data, headers=headers)
quote = response.json()
print(quote['rates'])
Review and send to customer.
Next Steps
Explore more features to scale your operations.
Shipment Tracking
Monitor real-time shipments with AI alerts.
Compliance Tools
Automate documentation and regulations.
Integrations
Connect with carriers and ERPs.
Frequently Asked Questions
Congratulations! You're ready to manage freight with AI-powered efficiency.
Last updated today