---
title: "Create entity profile"
method: POST
path: "/v3/entities"
tags: ["Entities"]
---

# Create entity profile

`POST /v3/entities`

Creates a KYBed entity profile. Requires a platform-admin session and CSRF token.

## Request body

- EntityCreateRequest
  - `id` string, required
  - `name` string, required
  - `logo` union — Absolute HTTP(S) URL or a safe asset filename without path separators.
    - string, uri
    - string
  - `description` string, nullable
  - `url` string, uri, nullable
  - `socialTwitter` string, uri, nullable
  - `socialYoutube` string, uri, nullable
  - `socialDiscord` string, uri, nullable
  - `socialTelegram` string, uri, nullable
  - `socialGithub` string, uri, nullable

## Response `201`

Entity profile was created.

- object
  - `data` Entity, required
    - `id` string, required — Stable lowercase slug identifier.
    - `name` string, required
    - `logo` union, required — Absolute HTTP(S) URL or a safe asset filename without path separators.
      - string, uri
      - string
    - `description` string, nullable, required
    - `url` string, uri, nullable, required
    - `socialTwitter` string, uri, nullable, required
    - `socialYoutube` string, uri, nullable, required
    - `socialDiscord` string, uri, nullable, required
    - `socialTelegram` string, uri, nullable, required
    - `socialGithub` string, uri, nullable, required
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
  - `meta` PaginationMeta, required
    - `total` integer — Exact total count when the endpoint provides one.
    - `hasMore` boolean — Indicates whether another page exists beyond the current page.
    - `offset` integer
    - `limit` integer — Echoed page size after endpoint-side clamping.
    - `timestamp` string, date-time, required
    - `chainId` string — Comma-separated chain IDs for multi-chain responses.
    - `degradedProviders` string[] — Live providers whose data is incomplete in this response.

## Other responses

- `400` — Malformed JSON request body.
- `401` — Missing, invalid, or expired platform-admin session.
- `403` — Inactive platform-admin access, missing CSRF token, or mismatched CSRF token.
- `409` — Entity slug already exists.
- `422` — Missing or invalid entity field.

---

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