Quickstart
Create your first order in under 2 minutes. No signup, no API keys.
1. Browse services
curl https://growthservice.org/api/v1/services
2. Create an order
curl -X POST https://growthservice.org/api/v1/orders \
-H "Content-Type: application/json" \
-d '{
"email": "you@company.com",
"service": "sales_engaged_leads",
"budget_usd": 80,
"brand_url": "https://yourbrand.com",
"description": "B2B SaaS targeting CTOs"
}'
# Returns { order_id, checkout_url, quantity, amount_cents, budget_usd }
# Open checkout_url to pay via Stripe3. Pay and get results
Open the checkout_url in a browser. After payment, your campaign starts instantly.
4. Check order status
curl "https://growthservice.org/api/v1/orders/ord_YOUR_ORDER?email=you@company.com"