GrowPath AI API
Getting Started
The GrowPath AI API is a RESTful API that allows you to programmatically interact with your CRM data. All API requests should be made to:
https://api.growpath.com/v1
Authentication
All API requests require authentication using an API token. Include your token in the Authorization header:
Authorization: Bearer YOUR_API_TOKEN
Tip: Generate your API token from Settings → API Keys in your dashboard.
Core Endpoints
Prospects
/v1/prospects
List all prospects with pagination
/v1/prospects
Create a new prospect
/v1/prospects/:id
Get a specific prospect by ID
/v1/prospects/:id
Update an existing prospect
/v1/prospects/:id
Delete a prospect permanently
curl -X POST https://api.growpath.com/v1/prospects \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "John Doe",
"email": "john@example.com",
"company": "Acme Inc",
"status": "new",
"value": 5000
}'
Webhooks
Subscribe to real-time events in your CRM and get instant notifications:
Rate Limits
API rate limits vary by plan tier to ensure optimal performance for all users: