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

# List Projects

> List all projects for this organization.

**Authentication:** API Key (Bearer token)



## OpenAPI

````yaml /openapi.json get /v1/projects
openapi: 3.1.0
info:
  title: Maven API
  description: >-
    Voice payment infrastructure — collect credit card payments securely over
    phone calls.
  version: 1.0.0
servers: []
security: []
paths:
  /v1/projects:
    get:
      tags:
        - Public API (v1)
        - Projects
      summary: List Projects
      description: |-
        List all projects for this organization.

        **Authentication:** API Key (Bearer token)
      operationId: list_projects_v1_projects_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      type: http
      description: 'Enter your API key: mvn_test_xxx or mvn_live_xxx'
      scheme: bearer

````