Skip to main content
POST
/
v1
/
company
Create a new company
curl --request POST \
  --url https://openapi.enginy.ai/v1/company \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "domain": "<string>",
  "website": "<string>",
  "companyLinkedInUrl": "<string>",
  "listId": 123,
  "mergeWithExisting": true
}
'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "id": 123,
    "name": "<string>",
    "domain": "<string>",
    "companyLinkedInUrl": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "outcome": "CREATED",
    "warnings": [
      "<string>"
    ],
    "matchedBy": "LINKEDIN_URL"
  }
}

Authorizations

x-api-key
string
header
required

Body

application/json
name
string

Company name

domain
string

Company website domain

website
string<uri>

Company website URL

companyLinkedInUrl
string<uri>

Company LinkedIn URL

listId
integer

ID of the list to add the company to

mergeWithExisting
boolean
default:true

Whether to merge with an existing company matched by normalized LinkedIn URL, domain, website, or exact name. Defaults to true.

{key}
any

Response

Company created successfully

status
enum<string>
required
Available options:
success
message
string
required
data
object
required