---
title: "Create a contact"
method: POST
path: "/users/me/contacts"
tags: ["contacts"]
---

# Create a contact

`POST /users/me/contacts`

## Request body

- CreateContactDto
  - `name` string, required — Display name
  - `addresses` ContactAddressesDto, required
    - `evm` string[] — EVM addresses (0x-prefixed hex)
    - `solana` string[] — Solana addresses
    - `bitcoin` string[] — Bitcoin addresses

## Response `201`

Contact created

- ContactResponseDto
  - `id` number, required — Contact ID
  - `name` string, required — Display name
  - `addresses` ContactAddressesDto, required
    - `evm` string[] — EVM addresses (0x-prefixed hex)
    - `solana` string[] — Solana addresses
    - `bitcoin` string[] — Bitcoin addresses
  - `createdAt` string, required — Creation timestamp (ISO-8601)

## Other responses

- `400` — Validation error, or no address supplied
- `401` — Unauthorized
- `403` — Forbidden

---

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