Company

All endpoints related to company / account data.

POST https://api.yourdomain.com/v1/company/search

Search for a company

Request Body

Name
Type
Description

name

string

Name of the company we're searching for

    "success": true,
    "companies": [{
                 "id": "company001"
                 "name": "LeadExporter Co.",
                 "industry": "SaaS"
                }],
     "createNewLink": "https://api.yourdomain.com/account/create?name=LeadExporter"
}

The companies property in the response should be an array of results, with all their available fields.

The createNewLink property in the response is optional and is a shortcut the user can click to create a new company in your backend / CRM system with the name that was searched for.

Last updated