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

# List Projects

> Get all projects for the organization (requires org-level API key, X-Project-Id header NOT required)



## OpenAPI

````yaml /v2/openapi.json get /projects
openapi: 3.0.0
info:
  title: Promptwatch API v2
  description: >-
    API v2 for customer integrations with Promptwatch monitoring platform. This
    version provides improved structure, additional endpoints, and enhanced
    functionality.
  version: 2.0.0
  contact:
    name: Promptwatch Support
    email: team@promptwatch.com
    url: https://promptwatch.com
  license:
    name: Commercial
    url: https://promptwatch.com/terms-and-conditions
servers:
  - url: https://server.promptwatch.com/api/v2
    description: Promptwatch API v2
security: []
tags:
  - name: Authentication
    description: API key validation and authentication
  - name: Content
    description: >-
      AI content generation and optimization. Create content asynchronously and
      poll for results.
  - name: Content Gap
    description: Content gap analysis and recommendations
  - name: Models
    description: Available LLM models
  - name: Monitors
    description: Monitor management and CRUD operations
  - name: Page Tracker
    description: Track URLs and inspect citation stats, responses, and prompts
  - name: Prompts
    description: Prompt management and operations
  - name: Query Fanouts
    description: ChatGPT query fanout keywords
  - name: Responses
    description: LLM response data and analytics
  - name: Tags
    description: Tag management for prompts
  - name: Topics
    description: Topic management for prompts
  - name: Actions
    description: Action items (GEO suggestions and tasks)
  - name: Personas
    description: Persona configuration for monitors
  - name: Brands
    description: Brand management for competitive analysis
  - name: Visibility
    description: Brand visibility time series and competitor heatmaps
  - name: Citations
    description: Citation analytics from AI responses
  - name: Analytics
    description: Visitor analytics, AI crawler logs, sentiment, and brand visibility trends
  - name: Projects
    description: Project management (organization-level keys only)
  - name: Sitemap
    description: Sitemap crawl progress and discovered URLs
  - name: Site Health
    description: >-
      Crawled pages with SEO issues (titles, meta descriptions, H1, thin
      content)
  - name: Socials
    description: >-
      Social media citations (Reddit posts and YouTube videos) found in LLM
      responses
paths:
  /projects:
    get:
      tags:
        - Projects
      summary: List Projects
      description: >-
        Get all projects for the organization (requires org-level API key,
        X-Project-Id header NOT required)
      operationId: listProjects
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                example:
                  projects:
                    - id: 6ba7b81a-9dad-11d1-80b4-00c04fd430c8
                      name: Example Project
                      slug: example-project
                      website: https://www.example.com
                      createdAt: '2026-01-10T09:00:00.000Z'
                    - id: 6ba7b81b-9dad-11d1-80b4-00c04fd430c8
                      name: Sandbox
                      slug: sandbox
                      website: null
                      createdAt: '2026-03-01T14:20:00.000Z'
                properties:
                  projects:
                    type: array
                    items:
                      type: object
                      example:
                        id: 6ba7b81a-9dad-11d1-80b4-00c04fd430c8
                        name: Example Project
                        slug: example-project
                        website: https://www.example.com
                        createdAt: '2026-03-30T10:15:00.000Z'
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Project unique identifier
                        name:
                          type: string
                          description: Project name
                        slug:
                          type: string
                          description: Project URL slug
                        website:
                          type: string
                          nullable: true
                          description: Project website URL
                        createdAt:
                          type: string
                          format: date-time
                          description: Creation timestamp
                      required:
                        - id
                        - name
                        - slug
                        - createdAt
                      additionalProperties: false
                    description: Array of projects
                required:
                  - projects
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                example:
                  error: Unauthorized
                  message: Missing or invalid X-API-Key header.
                properties:
                  error:
                    type: string
                    description: Error category (often aligned with HTTP semantics)
                  code:
                    type: string
                    description: Optional machine-readable code
                  message:
                    type: string
                    description: Human-readable explanation
                  details:
                    type: object
                    description: Optional structured detail (e.g. validation)
                    additionalProperties: true
                required:
                  - error
                  - message
                additionalProperties: false
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                example:
                  code: PROJECT_NOT_FOUND
                  message: Project not found
                properties:
                  code:
                    type: string
                    description: Error code indicating the type of error
                    enum:
                      - PROJECT_NOT_FOUND
                      - PROJECT_FORBIDDEN
                      - PROJECT_DELETED
                      - PROJECT_LAST_IN_ORG
                      - PROJECT_ORG_FORBIDDEN
                      - PROJECT_ENRICHMENT_FAILED
                      - PROJECT_RETRIEVE_FAILED
                      - PROJECT_FETCH_FAILED
                      - PROJECT_ORG_ACCESS_CHECK_FAILED
                      - PROJECT_RETRIEVE_BY_ORG_FAILED
                      - PROJECT_SLUG_GENERATION_FAILED
                      - INTERNAL_ERROR
                    example: PROJECT_NOT_FOUND
                  message:
                    type: string
                    description: Human-readable error message
                required:
                  - code
                  - message
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                example:
                  code: PROJECT_NOT_FOUND
                  message: Project not found
                properties:
                  code:
                    type: string
                    description: Error code indicating the type of error
                    enum:
                      - PROJECT_NOT_FOUND
                      - PROJECT_FORBIDDEN
                      - PROJECT_DELETED
                      - PROJECT_LAST_IN_ORG
                      - PROJECT_ORG_FORBIDDEN
                      - PROJECT_ENRICHMENT_FAILED
                      - PROJECT_RETRIEVE_FAILED
                      - PROJECT_FETCH_FAILED
                      - PROJECT_ORG_ACCESS_CHECK_FAILED
                      - PROJECT_RETRIEVE_BY_ORG_FAILED
                      - PROJECT_SLUG_GENERATION_FAILED
                      - INTERNAL_ERROR
                    example: PROJECT_NOT_FOUND
                  message:
                    type: string
                    description: Human-readable error message
                required:
                  - code
                  - message
                additionalProperties: false
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        API key for authentication. Get yours from the Promptwatch dashboard
        under Settings > API Keys.

````