---
title: "Bulk create contacts"
method: POST
path: "/v1/contacts/bulk"
tags: ["CRM"]
---

# Bulk create contacts

`POST /v1/contacts/bulk`

Creates or resolves up to 100 contact records in one request.

## Request body

- ContactInput[]
  - `email` string, email, required
  - `first_name` string, nullable
  - `last_name` string, nullable
  - `full_name` string, nullable
  - `job_title` string, nullable
  - `phone` string, nullable
  - `seniority` string, nullable
  - `linkedin` string, nullable
  - `twitter` string, nullable
  - `twitter_followers` number, nullable
  - `current_company` string, nullable
  - `other_emails` union
    - string[]
    - string
  - `type` string, nullable
  - `avatar_url` string, nullable
  - `email_verified` boolean, nullable
  - `first_email_interaction` union
    - string, date-time
    - number — Unix seconds or milliseconds.
  - `last_email_interaction` union
    - string, date-time
    - number — Unix seconds or milliseconds.
  - `first_meeting_interaction` union
    - string, date-time
    - number — Unix seconds or milliseconds.
  - `last_meeting_interaction` union
    - string, date-time
    - number — Unix seconds or milliseconds.
  - `last_interaction` union
    - string, date-time
    - number — Unix seconds or milliseconds.
  - `next_meeting` union
    - string, date-time
    - number — Unix seconds or milliseconds.

## Response `200`

Contacts were created or resolved.

- ApiResponse
  - `success` boolean
  - `message` string
  - `data` unknown

## Other responses

- `201` — Contacts were created or resolved.
- `400` — The request failed validation.
- `401` — The API key is missing, invalid, or not allowed to access this route.
- `429` — The route rate limit was exceeded.

---

[API](https://skmtc.net/octolane-org/apis/octolane-public-api.md) · [All operations](https://skmtc.net/octolane-org/apis/octolane-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/octolane-org/octolane-public-api/versions/8c7700f1eeec/schema)
