DEVELOPER RESOURCES

GrowPath AI API

Powerful RESTful API to integrate GrowPath AI with your existing tools and workflows. Build custom integrations and automate your CRM.

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:

BASE URL
https://api.growpath.com/v1

Authentication

All API requests require authentication using an API token. Include your token in the Authorization header:

HEADER
Authorization: Bearer YOUR_API_TOKEN

Tip: Generate your API token from Settings → API Keys in your dashboard.

Core Endpoints

Prospects

GET

/v1/prospects

List all prospects with pagination

POST

/v1/prospects

Create a new prospect

GET

/v1/prospects/:id

Get a specific prospect by ID

PUT

/v1/prospects/:id

Update an existing prospect

DELETE

/v1/prospects/:id

Delete a prospect permanently

Example Request
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:

prospect.created
prospect.updated
prospect.converted
client.created
follow_up.completed

Rate Limits

API rate limits vary by plan tier to ensure optimal performance for all users:

100
requests/minute
Starter Plan
500
requests/minute
Professional
2000
requests/minute
Enterprise