---
title: "Create a Contact"
method: POST
path: "/contacts"
tags: ["Contacts"]
---

# Create a Contact

`POST /contacts`

Create contacts in your Visible account.

## Request body

- object
  - `contact` ContactInput
    - `email` string, email, required — Email address of the contact
    - `company_id` string, uuid, required — ID of the company or fund
    - `first_name` string — First name of the contact
    - `last_name` string — Last name of the contact
    - `title` string — Job title of the contact
    - `contact_list_ids` string[] — Array of contact list IDs this contact should belong to

## Response `201`

Contact successfully created

- object
  - `contact` Contact
    - `id` string, uuid, required — Unique identifier for the contact
    - `email` string, email, required — Email address of the contact
    - `company_id` string, uuid, required — ID of the company or fund
    - `first_name` string, nullable — First name of the contact
    - `last_name` string, nullable — Last name of the contact
    - `title` string, nullable — Job title of the contact
    - `contact_list_ids` string[], required — Array of contact list IDs this contact belongs to

## Other responses

- `400` — Bad Request - The request is invalid or malformed
- `401` — Unauthorized - Invalid or missing authentication token
- `422` — Unprocessable Entity - The request is valid but contains semantic errors
- `429` — Too Many Requests - Rate limit exceeded

---

[API](https://skmtc.dev/visible/apis/visible-api.md) · [All operations](https://skmtc.dev/visible/apis/visible-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/visible/visible-api/revisions/a04e0975020f/schema)
