Quickstart
Get your API key and create your first order in under 2 minutes.
1. Get your API key
curl -X POST https://growthservice.org/api/v1/auth/request-key \
-H "Content-Type: application/json" \
-d '{"email": "you@company.com"}'
# Check your email for the API key (gsk_...)2. Browse services
curl https://growthservice.org/api/v1/services
3. Create an order
curl -X POST https://growthservice.org/api/v1/orders \
-H "Authorization: Bearer gsk_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"service": "sales_leads",
"tier": "growth",
"brand_url": "https://yourbrand.com",
"description": "B2B SaaS targeting CTOs"
}'
# Returns { order_id, checkout_url }
# Open checkout_url to pay via Stripe4. Check order status
curl https://growthservice.org/api/v1/orders/ord_YOUR_ORDER \ -H "Authorization: Bearer gsk_YOUR_KEY"