# Create a project
POST /api/projects
## Request
```bash
curl -X POST 'https://sourced.sh/api/projects' \
  -H 'Authorization: Bearer $SOURCED_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{}'
```
## Request body

ProjectCreateInput:
  type: object
  required: name
  properties:
    name (required): string
    apiName: string
    mode: string enum flagship | stainless_compatible | custom | openapi | stainless_migration
      Use `flagship` for Sourced-native generation or `stainless_compatible` for clean-room Stainless-compatible migration. Legacy aliases are accepted.

## Responses

### 201

Project created.
### 401


### 402


### 403


