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

# Get all admin projects of developer

> Retrieves all projects owned by the authenticated user



## OpenAPI

````yaml get /project/
openapi: 3.0.0
info:
  title: Basic Admin API
  description: API for Basic Admin
  version: 0.1.0
servers:
  - url: https://api.basic.tech
    description: Production server
  - url: https://beta.api.basic.tech
    description: Staging server
  - url: http://localhost:3003
    description: Development server
security: []
tags:
  - name: auth
    description: Authentication and authorization end-points
  - name: projects
    description: Project management end-points
  - name: project-keys
    description: Project API key management end-points
  - name: project-users
    description: Project user management end-points
  - name: project-schema
    description: Project schema management end-points
  - name: project-upload
    description: Project image upload end-points
  - name: teams
    description: Project user management end-points
  - name: utils
    description: Utility end-points - very useful, trust me
externalDocs:
  url: https://docs.basic.tech
  description: Find more info here
paths:
  /project/:
    get:
      tags:
        - projects
      summary: Get user projects
      description: Retrieves all projects owned by the authenticated user
      responses:
        '200':
          description: List of user projects
          content:
            application/json:
              schema:
                description: List of user projects
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                        slug:
                          type: string
                        profile:
                          type: object
                          properties:
                            icon_url:
                              type: string
                            styles:
                              type: object
                              properties:
                                background_url:
                                  type: string
                              additionalProperties: true
                          additionalProperties: true
                        team_id:
                          type: string
                        team_name:
                          type: string
                        team_slug:
                          type: string
                        created_at:
                          type: string
                          format: date-time
        '401':
          description: Unauthorized - Invalid or missing authentication
          content:
            application/json:
              schema:
                description: Unauthorized - Invalid or missing authentication
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT Authorization Token header using the Bearer scheme
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API Key Authorization header using the Bearer scheme

````