Quickstart
Make your first authenticated call in under 5 minutes.
- 01
Get a Provider Key
Your Provider Key identifies your platform. We issue one per integration, and it stays the same for every call.
Email us for a Provider KeyWe'll reply with your Provider Key and a test Company Key you can use to verify your integration end-to-end.
- 02
Have your carrier share their Company Key
Each carrier you onboard generates a Company Key from their ELD portal. They paste it to you; you put it in your X-API-Company-Key header.
View the 4-step carrier guide - 03
Make your first call
Hit /v2/company-info with both keys in the request headers. Success means everything is wired up.
Try Company Info
The two-key model in one line
One Provider Key identifies you. OneCompany Key identifies the carrier whose data you're requesting. To switch carriers, swap the Company Key — nothing else changes.
curl -X GET "https://api.huntereld.com/v2/company-info" \
-H "X-API-Provider-Key: YOUR_PROVIDER_KEY" \
-H "X-API-Company-Key: YOUR_COMPANY_KEY"Base URL
https://api.huntereld.com/v2Every endpoint is a GET. Responses are JSON, timestamps are UTC.