Welcome to Armada
Armada is growth infrastructure for modern teams. The API provides a simple, reliable foundation for building growth tools and automations.
Base URL
All API requests are made to:
https://api.armadagrowth.com
Authentication
The Armada API uses API keys to authenticate requests. Include your key in the x-api-key header with every request.
curl https://api.armadagrowth.com/me \
-H "x-api-key: YOUR_API_KEY"
Your API key is tied to your account. All data you access and configure through the API is scoped to your account only.
Keep your API key secret. Do not share it in public repositories, client-side code, or anywhere publicly accessible.
Quick Start
1. Verify your connection (no auth required):
curl https://api.armadagrowth.com/health
2. Check your identity (auth required):
curl https://api.armadagrowth.com/me \
-H "x-api-key: YOUR_API_KEY"
{
"user": {
"id": "your-user-id",
"name": "Your Name",
"email": "you@example.com"
}
}
What’s Next