LogoStow
  • Browse
  • Pricing
  • Sell on Stow
  • Blog

Getting Started

  • Introduction

Registry Item Spec

  • Overview
  • Registry Types
  • Preview Media
  • Token Price
  • Subtype
  • Industry
  • Framework
  • UI Libraries

Publishing Items

  • Stow CLI

API

  • Overview
  • Projects
  • Registry Items

Projects

Create and manage projects within your team. Projects are used to group registry items together.

Create a project

POST https://stow.build/api/projects

Creates a new project within the team associated with your API key.

Request body

FieldTypeRequiredDescription
namestringYesDisplay name of the project.
slugstringYesURL friendly identifier. Automatically sanitized (lowercased, special characters removed).

Example request

curl -X POST https://stow.build/api/projects \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "name": "My Project", "slug": "my-project" }'

Success response

Returns 201 Created with the new project:

{
  "id": 1,
  "name": "My Project",
  "slug": "my-project"
}

Error responses

StatusErrorCause
400API key is required.The x-api-key header is missing or empty.
400Project name is required.The name field is missing, empty, or not a string.
400Project slug is required.The slug field is missing, empty, or not a string.
400Slug must contain at least one alphanumeric character.The provided slug only contains special characters that get stripped during sanitization.
401Unauthorized.The API key is invalid.
409A project with the slug "{slug}" already exists.A project with the same slug already exists within your team.
500Internal server error.An unexpected error occurred. Try again later.

On This Page

Create a projectRequest bodyExample requestSuccess responseError responses
Stow LogoStow

The marketplace for premium UI components and blocks. Build faster with ready to use designs.

Company

  • About

Product

  • Pricing
  • Sell on Stow

Resources

  • Blog
  • Creator Documentation

Discover

  • Explore
  • All Products
  • Shadcn
  • React
  • Vue
  • Svelte

© Stow. All rights reserved.

Terms of UsePrivacy Policy
2026