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

# Create a new app

> Create a new app with the provided information



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml post /apps
openapi: 3.0.1
info:
  title: Midsommar API
  description: This is the API for the Midsommar user and group management system.
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    url: http://www.swagger.io/support
    email: support@swagger.io
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
  - url: //localhost:8080/api/v1
security: []
paths:
  /apps:
    post:
      tags:
        - apps
      summary: Create a new app
      description: Create a new app with the provided information
      requestBody:
        description: App information
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/api.AppInput'
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.AppResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api.AppInput:
      type: object
      properties:
        data:
          type: object
          properties:
            attributes:
              type: object
              properties:
                budget_start_date:
                  type: string
                datasource_ids:
                  type: array
                  items:
                    type: integer
                description:
                  type: string
                llm_ids:
                  type: array
                  items:
                    type: integer
                metadata:
                  type: object
                  additionalProperties: true
                monthly_budget:
                  type: number
                name:
                  type: string
                namespace:
                  type: string
                plugin_resources:
                  type: array
                  items:
                    $ref: '#/components/schemas/api.PluginResourceInput'
                tool_ids:
                  type: array
                  items:
                    type: integer
                user_id:
                  type: integer
            type:
              type: string
      description: App input model
    api.AppResponse:
      type: object
      properties:
        attributes:
          type: object
          properties:
            budget_start_date:
              type: string
            credential_id:
              type: integer
            datasource_ids:
              type: array
              items:
                type: integer
            description:
              type: string
            is_orphaned:
              type: boolean
            llm_ids:
              type: array
              items:
                type: integer
            metadata:
              type: object
              additionalProperties: true
            monthly_budget:
              type: number
            name:
              type: string
            namespace:
              type: string
            plugin_resources:
              type: array
              items:
                $ref: '#/components/schemas/api.PluginResourceOutput'
            tool_ids:
              type: array
              items:
                type: integer
            user_id:
              type: integer
        id:
          type: string
        type:
          type: string
      description: App response model
    api.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
      description: Error response model
    api.PluginResourceInput:
      type: object
      properties:
        instance_ids:
          type: array
          items:
            type: string
        plugin_id:
          type: integer
        resource_type_slug:
          type: string
    api.PluginResourceOutput:
      type: object
      properties:
        instance_ids:
          type: array
          items:
            type: string
        plugin_id:
          type: integer
        resource_type_name:
          type: string
        resource_type_slug:
          type: string
  securitySchemes:
    BearerAuth:
      type: apiKey
      name: Authorization
      in: header

````