Your API Keys

Name Key Created Last Used Status Actions
Production Key alph_live_51H8K9L2K3J4M5N6O7P8Q9R0S1T2U3V4W5X6Y7Z8 15 Jan 2026 2 hours ago Active
Development Key alph_dev_78A9B0C1D2E3F4G5H6I7J8K9L0M1N2O3P4Q5R6S7T8 20 Jan 2026 Never Active
Test Key alph_test_90X1Y2Z3A4B5C6D7E8F9G0H1I2J3K4L5M6N7O8P9 1 Feb 2026 1 day ago Active

Create New API Key

Webhook Endpoints

URL Events Status Actions
https://app.client.com/webhooks/load load.created load.updated Active
https://app.client.com/webhooks/payment payment.succeeded payment.failed Active
https://app.client.com/webhooks/carrier carrier.verified Inactive

Add New Webhook

Load Events
Payment Events
Carrier Events
User Events

Webhook Logs

Total Requests
124,567
+12.3% from last month
Average Response Time
234ms
-5% from last month
Error Rate
0.23%
-0.1% from last month

Requests Over Time

Top Endpoints

Endpoint Requests Avg Response Errors
/api/loads 45,678 156ms 0.1%
/api/carriers 34,567 178ms 0.2%
/api/payments 23,456 234ms 0.3%
/api/tracking 12,345 345ms 0.5%

Quick Start Guide

Step 1: Get Your API Key

Navigate to the API Keys tab and create a new key. Copy the key and keep it secure.

Step 2: Make Your First Request

Use your API key in the Authorization header:

JavaScript
const response = await fetch('https://api.alphafreight.com/v1/loads', {
    headers: {
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json'
    }
});

const data = await response.json();
console.log(data);
Python
import requests

headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
}

response = requests.get('https://api.alphafreight.com/v1/loads', headers=headers)
data = response.json()
print(data)
cURL
curl https://api.alphafreight.com/v1/loads \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Available Endpoints

GET /api/loads - List all loads
POST /api/loads - Create a new load
GET /api/carriers - List all carriers
GET /api/payments - Get payment information
GET /api/tracking - Track load status
Operation completed successfully!