> ## Documentation Index
> Fetch the complete documentation index at: https://docs.equated.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a project



## OpenAPI

````yaml /openapi.json post /api/projects
openapi: 3.1.0
info:
  title: Equated API
  version: 1.0.0
  description: >-
    Agent-facing accounting API. Authenticate with a bearer token issued from
    Settings → API Tokens, or via the in-app session cookie when called from the
    web client.
servers:
  - url: https://app.equated.co
    description: API server
security: []
paths:
  /api/projects:
    post:
      tags:
        - Projects
      summary: Create a project
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  minLength: 1
                  maxLength: 200
                emoji:
                  type: string
                  nullable: true
                  maxLength: 16
                  description: Emoji shown before the name. Null or empty clears it.
                groupId:
                  type: integer
                  nullable: true
                  minimum: 0
                  exclusiveMinimum: true
              required:
                - name
      responses:
        '201':
          description: Created project
          content:
            application/json:
              schema:
                type: object
                properties:
                  project:
                    $ref: '#/components/schemas/Project'
                required:
                  - project
      security:
        - bearerAuth: []
components:
  schemas:
    Project:
      type: object
      properties:
        id:
          type: integer
          minimum: 0
          exclusiveMinimum: true
        organizationId:
          type: string
        name:
          type: string
        emoji:
          type: string
          nullable: true
        groupId:
          type: integer
          nullable: true
          minimum: 0
          exclusiveMinimum: true
        group:
          allOf:
            - $ref: '#/components/schemas/ProjectGroupSummary'
            - nullable: true
        createdAt:
          type: string
        updatedAt:
          type: string
      required:
        - id
        - organizationId
        - name
        - emoji
        - groupId
        - group
        - createdAt
        - updatedAt
    ProjectGroupSummary:
      type: object
      properties:
        id:
          type: integer
          minimum: 0
          exclusiveMinimum: true
        name:
          type: string
        emoji:
          type: string
          nullable: true
      required:
        - id
        - name
        - emoji
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````