Getting Started
Quickstart
Get started with Hermes in 5 minutes
Quickstart
Get up and running with the Hermes API or CLI in minutes.
Step 1: Get Your API Key
- Log in to the Hermes Dashboard
- Navigate to API Keys in the sidebar
- Click Create New Key
- Copy your key (starts with
hermes_)
⚠️ Warning: Store your API key securely. It won't be shown again after creation.
Step 2: Make Your First API Call
Test that everything works by checking system health:
curl https://api.hermes.camie.ai/healthconst res = await fetch('https://api.hermes.camie.ai/health');
const data = await res.json();
console.log(data);{
"status": "ok",
"subsystems": {
"sub-1": "up",
"sub-2": "up",
"sub-3": "up",
"sub-4": "up",
"sub-5": "up",
"sub-6": "up"
}
}Step 3: List Your Leads
curl -H "Authorization: Bearer hermes_your_api_key" \
https://api.hermes.camie.ai/v1/leadsconst res = await fetch('https://api.hermes.camie.ai/v1/leads', {
headers: { 'Authorization': 'Bearer hermes_your_api_key' }
});
const data = await res.json();
console.log(data);Step 4 (Optional): Install the CLI
git clone https://github.com/Camie-Tech/hermes-cli.git
cd hermes-cli
npm installCreate a .env file:
HERMES_HOST=https://api.hermes.camie.ai
HERMES_TOKEN=your_jwt_tokenTest it:
node ./bin/hermes.js healthNext Steps
- Create a Cluster — Provision infrastructure for email sending
- Discover Leads — Find leads from Facebook & Google Ads
- Create a Campaign — Set up your first cold email campaign
- CLI Reference — Full CLI command reference