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

# Create Project

> Create a new project.



## OpenAPI

````yaml https://api.oviond.com/openapi.json post /v1/projects
openapi: 3.1.0
info:
  title: Oviond Backend API
  version: 1.0.0
  description: Authentication, account management, billing, and media services for Oviond.
  x-logo:
    url: https://app.oviond.com/img/oviond-full-logo.svg
    altText: Oviond
servers:
  - url: https://api.oviond.com
    description: Production
security:
  - ApiKeyAuth: []
  - BearerAuth: []
paths:
  /v1/projects:
    post:
      tags:
        - Projects
      summary: Create Project
      description: Create a new project.
      operationId: create_project
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProjectRequest'
            example:
              name: Q1 Report
              type: REPORT
              template: BLANK
              client_id: cliAbc123
      responses:
        '201':
          description: Project created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateProjectResponse'
components:
  schemas:
    CreateProjectRequest:
      type: object
      properties:
        name:
          type: string
          minLength: 1
          example: Q1 Report
        client_id:
          type: string
          example: cliAbc123
        type:
          type: string
          enum:
            - REPORT
            - DASHBOARD
          example: REPORT
        template:
          type: string
          enum:
            - BLANK
            - TEMPLATE
            - AGENCY
          example: BLANK
        template_id:
          type: string
          description: Clone pages and widgets from this template into the new project
        pages:
          type: array
          items:
            type: object
            additionalProperties: {}
        theme_id:
          type: string
        date_range:
          $ref: '#/components/schemas/DateRange'
        logo_url:
          type: string
        auto_refresh_enabled:
          type: boolean
        show_cover_page:
          type: boolean
        show_cover_page_logo:
          type: boolean
        show_cover_page_client_logo:
          type: boolean
        show_cover_page_agency_logo:
          type: boolean
        show_cover_page_name:
          type: boolean
        show_cover_page_date:
          type: boolean
        show_cover_page_bg_image:
          type: boolean
        show_header:
          type: boolean
        show_header_logo:
          type: boolean
        show_header_name:
          type: boolean
        show_header_date:
          type: boolean
        show_page_numbers:
          type: boolean
        show_table_of_contents:
          type: boolean
        show_date:
          type: boolean
        show_thank_you:
          type: boolean
        show_thank_you_bg_image:
          type: boolean
        show_thank_you_logo:
          type: boolean
        show_thank_you_client_logo:
          type: boolean
        show_thank_you_agency_logo:
          type: boolean
        show_thank_you_heading:
          type: boolean
        show_thank_you_message:
          type: boolean
        orientation:
          type: string
          enum:
            - portrait
            - landscape
        description:
          type: string
        status:
          type: string
        auto_refresh_interval_hours:
          anyOf:
            - type: number
              enum:
                - 1
            - type: number
              enum:
                - 24
          description: 'Auto-refresh cadence: 1 = hourly, 24 = daily'
          example: 24
        password_enabled:
          type: boolean
        password:
          type: string
        pdf_enabled:
          type: boolean
      required:
        - name
        - type
        - template
    CreateProjectResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          type: object
          properties:
            id:
              type: string
          required:
            - id
      required:
        - success
        - data
    DateRange:
      type: object
      properties:
        text:
          type: string
          enum:
            - Today
            - Yesterday
            - Last 7 Days
            - Last 30 Days
            - Last 60 Days
            - Custom Days
            - This Month
            - Last Month
            - Custom Months
            - Last 2 Months
            - Last 3 Months
            - Last 12 Months
            - This Year
            - Last Year
            - Custom
          example: Last 30 Days
        compare:
          type: string
          enum:
            - None
            - Period
            - Month
            - Year
            - Custom
          example: None
        include_today:
          type: boolean
          example: false
        current_start:
          type: string
          example: '2026-03-01'
        current_end:
          type: string
          example: '2026-03-31'
        previous_start:
          type: string
          example: '2026-02-01'
        previous_end:
          type: string
          example: '2026-02-28'
        custom_days:
          type: number
          example: 60
        custom_months:
          type: number
          example: 3
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: >-
        Oviond API key (prefix `oviond_`) sent as a Bearer token — the
        credential for REST/programmatic and headless integrations. Manage keys
        in Settings → API Keys. API keys do NOT authenticate the MCP endpoint
        (/mcp), which uses OAuth 2.1 + PKCE.
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Supabase-issued JWT used by the Oviond web app session. External API
        consumers should authenticate with an Oviond API key (ApiKeyAuth)
        instead.

````