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

# Fetch projects

> Returns a list of Ditto projects. Only projects with Developer Mode enabled can be fetched.



## OpenAPI

````yaml openapi-legacy.json get /projects
openapi: 3.0.0
info:
  version: 1.0.0
  title: Ditto API
  description: Programmatically read and write data in your Ditto workspace.
servers:
  - url: https://api.dittowords.com/v1
security: []
paths:
  /projects:
    get:
      tags:
        - Projects
      summary: Fetch projects
      description: >-
        Returns a list of Ditto projects. Only projects with Developer Mode
        enabled can be fetched.
      responses:
        '200':
          description: >-
            The projects will return as a JSON Object with each project under
            it's own project ID in the format project_<DITTO_PROJECT_ID> as the
            key in the object.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    name:
                      type: string
                    url:
                      type: string
                  required:
                    - id
                    - name
                    - url
                example:
                  - id: project_123
                    name: My Project
                    url: https://app.dittowords.com/projects/project_123
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization

````