Skip to main content

Welcome to the GrowEasy API

The GrowEasy API allows you to programmatically start scrapes, check status, manage credits, and find/verify emails. Build custom integrations and automate your lead generation workflows.

Start Scrape

Start a new scrape with filters

Check Status

Get the status of a scrape job

Find Email

Find business emails for leads

Verify Email

Verify email deliverability

Authentication

All API endpoints require authentication using Bearer tokens. Include your API key in the Authorization header:
curl -X GET "https://api.groweasy.io/credits" \
  -H "Authorization: Bearer YOUR_API_KEY"
Get your API key from the GrowEasy dashboard.

Base URL

All API requests should be made to:
https://api.groweasy.io

Rate Limits

  • Starter plan: 60 requests per minute
  • Pro plan: 300 requests per minute
  • Enterprise: Custom limits

Response Format

All responses are returned in JSON format:
{
  "success": true,
  "data": {
    // Response data
  }
}

Error Handling

Errors follow a consistent format:
{
  "success": false,
  "error": {
    "code": "INVALID_REQUEST",
    "message": "Description of the error"
  }
}

Common Error Codes

CodeDescription
INVALID_REQUESTThe request body is malformed or missing required fields
UNAUTHORIZEDInvalid or missing API key
INSUFFICIENT_CREDITSNot enough credits to complete the operation
NOT_FOUNDThe requested resource was not found
RATE_LIMIT_EXCEEDEDToo many requests, slow down

Need Help?

Contact our developer support at api-support@groweasy.io.