Skip to main content
GET
/
storereviewerdetails
/
company-name
curl "https://api.yourservice.com/api/v1/storereviewerdetails/company-name?website=techcorp.com"
{
  "success": true,
  "data": { "companyName": "TechCorp" }
}
Useful for auto-filling the company name field when the reviewer’s website is entered in a form. Searches both live and test databases. Returns null if no match is found — this is not an error.
No authentication required for this endpoint.

Query Parameters

website
string
required
A website URL or domain (e.g. techcorp.com or https://techcorp.com). The www. prefix is stripped before matching.

Error Codes

CodeHTTPDescription
MISSING_WEBSITE400website query parameter not provided
INVALID_WEBSITE400Value cannot be parsed as a valid URL
INTERNAL_ERROR500Unexpected server error
curl "https://api.yourservice.com/api/v1/storereviewerdetails/company-name?website=techcorp.com"
{
  "success": true,
  "data": { "companyName": "TechCorp" }
}