Skip to main content
POST
/
v1
/
accounts
/
bulk
Bulk create accounts
curl --request POST \
  --url https://api.octolane.com/v1/accounts/bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
[
  {
    "domain": "acme.com",
    "name": "Acme",
    "industry": "<string>",
    "logo": "<string>",
    "linkedin": "<string>",
    "twitter": "<string>",
    "twitter_followers": 123,
    "description": "<string>",
    "primary_location": "<string>",
    "founded": 5499.5,
    "estimated_revenue": 123,
    "total_fund_raised": 123,
    "employee_range": "<string>",
    "type": "<string>",
    "tags": [
      "<string>"
    ],
    "first_email_interaction": "2023-11-07T05:31:56Z",
    "last_email_interaction": "2023-11-07T05:31:56Z",
    "first_meeting_interaction": "2023-11-07T05:31:56Z",
    "last_meeting_interaction": "2023-11-07T05:31:56Z",
    "last_interaction": "2023-11-07T05:31:56Z",
    "next_meeting": "2023-11-07T05:31:56Z"
  }
]
'
{
  "success": true,
  "message": "<string>",
  "data": "<unknown>"
}

Authorizations

x-api-key
string
header
required

Public API key for the Octolane organization.

Body

application/json

Array of account payloads. Maximum 100 items.

Required array length: 1 - 100 elements
domain
string
required

Company domain.

Example:

"acme.com"

name
string | null
Example:

"Acme"

industry
string | null
logo
string | null
linkedin
string | null
twitter
string | null
twitter_followers
number | null
description
string | null
primary_location
string | null
founded
number | null
Required range: 1000 <= x <= 9999
estimated_revenue
number | null
total_fund_raised
number | null
employee_range
string | null
type
string | null
tags
first_email_interaction
last_email_interaction
first_meeting_interaction
last_meeting_interaction
last_interaction
next_meeting

Response

Accounts were created or resolved.

success
boolean
Example:

true

message
string
data
any

Endpoint-specific response payload.