---
title: "Create Project"
method: POST
path: "/v1/projects/"
tags: ["Project"]
---

# Create Project

`POST /v1/projects/`

Create a project.

## Request body

- ProjectCreate
  - `id` string
  - `name` string, required — Name of the project.
  - `description` string — Description of the project.
  - `type` 'public' — Type of the project. <br> * `public` for public chain project
  - `members` integer — Number of members invited to the consortium project. <br>Only for the `consortium` project.
  - `networks` integer — Number of networks created in the project.
  - `creator` Creator — Creator of the object.
    - `id` string
    - `email` string, email
    - `first_name` string
    - `last_name` string
    - `organization` Object — Common object representation.
      - `id` string
      - `name` string
  - `created_at` string, date-time — When the object was created.

## Response `201`

- Project
  - `id` string
  - `name` string — Name of the project.
  - `description` string — Description of the project.
  - `type` 'public' — Type of the project. <br> * `public` for public chain project
  - `members` integer — Number of members invited to the consortium project. <br>Only for the `consortium` project.
  - `networks` integer — Number of networks created in the project.
  - `creator` Creator — Creator of the object.
    - `id` string
    - `email` string, email
    - `first_name` string
    - `last_name` string
    - `organization` Object — Common object representation.
      - `id` string
      - `name` string
  - `created_at` string, date-time — When the object was created.

## Other responses

- `400` — Validation error.

---

[API](https://skmtc.net/chainstack/apis/chainstack-platform-api.md) · [All operations](https://skmtc.net/chainstack/apis/chainstack-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/chainstack/chainstack-platform-api/versions/3ab04211149e/schema)
