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

# List projects

> List the projects of the API key's workspace, with their destinations.

The response holds no signing secrets and no destination extra headers. `signing_enabled` shows if a destination signs its requests.




## OpenAPI

````yaml api-reference/openapi.yaml GET /api/v1/projects
openapi: 3.1.0
info:
  title: hooksnode API
  version: '1.0'
  description: |
    Send events to a source, and read and retry events with a workspace API key.
servers:
  - url: https://hooksnode.com
security:
  - bearerAuth: []
tags:
  - name: Ingest
  - name: Projects
  - name: Events
paths:
  /api/v1/projects:
    get:
      tags:
        - Projects
      summary: List projects
      description: >
        List the projects of the API key's workspace, with their destinations.


        The response holds no signing secrets and no destination extra headers.
        `signing_enabled` shows if a destination signs its requests.
      operationId: listProjects
      responses:
        '200':
          description: The projects.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Project'
              example:
                - id: 2mJ8kQ4vXw9aB3cD5eF7gH1iK0L
                  name: Payments
                  workspace_id: 2mJ8kP1aBcDeFgHiJkLmNoPqRsT
                  plan_code: free
                  created_at: '2026-09-24T10:00:00Z'
                  destinations:
                    - id: 7
                      name: API
                      url: https://api.example.com/hooks
                      is_active: true
                      signing_enabled: true
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  schemas:
    Project:
      type: object
      required:
        - id
        - name
        - workspace_id
        - plan_code
        - created_at
        - destinations
      properties:
        id:
          type: string
        name:
          type: string
        workspace_id:
          type: string
        plan_code:
          type: string
          enum:
            - free
            - pro
        created_at:
          type: string
          format: date-time
        destinations:
          type: array
          items:
            $ref: '#/components/schemas/Destination'
    Destination:
      type: object
      required:
        - id
        - name
        - url
        - is_active
        - signing_enabled
      properties:
        id:
          type: integer
        name:
          type: string
        url:
          type: string
        is_active:
          type: boolean
        signing_enabled:
          type: boolean
          description: The destination signs each request.
    Error:
      type: object
      properties:
        error:
          type: string
  responses:
    Unauthorized:
      description: The API key is missing or not valid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: The workspace is suspended, or the key's creator has no verified email.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimited:
      description: Too many requests.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: A workspace API key. You can also send it in the `X-API-Key` header.

````