Skip to main content
GET
/
storereviewerdetails
/
email-suggestions
curl "https://api.yourservice.com/api/v1/storereviewerdetails/email-suggestions?website=techcorp.com&email=priya"
{
  "success": true,
  "data": {
    "suggestions": [
      {
        "name": "Priya Sharma",
        "email": "priya.sharma@techcorp.com",
        "company": "TechCorp"
      }
    ]
  }
}
Powers the autocomplete suggestions in the reviewer email input field. Returns up to 10 results from live and test databases. Returns an empty array if no website is provided — this is not an error.
No authentication required for this endpoint.

Query Parameters

website
string
Website URL or domain to filter by. Returns empty array if missing or unparseable.
email
string
Partial email string for prefix filtering. Case-insensitive.
curl "https://api.yourservice.com/api/v1/storereviewerdetails/email-suggestions?website=techcorp.com&email=priya"
{
  "success": true,
  "data": {
    "suggestions": [
      {
        "name": "Priya Sharma",
        "email": "priya.sharma@techcorp.com",
        "company": "TechCorp"
      }
    ]
  }
}