> ## 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 sources

> List the sources of a project. The response holds no signing secrets or verify tokens. Read them in the dashboard.



## OpenAPI

````yaml api-reference/openapi.yaml GET /api/v1/projects/{projectId}/sources
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/{projectId}/sources:
    get:
      tags:
        - Projects
      summary: List sources
      description: >-
        List the sources of a project. The response holds no signing secrets or
        verify tokens. Read them in the dashboard.
      operationId: listSources
      parameters:
        - $ref: '#/components/parameters/ProjectId'
      responses:
        '200':
          description: The sources.
          content:
            application/json:
              schema:
                type: object
                properties:
                  sources:
                    type: array
                    items:
                      $ref: '#/components/schemas/Source'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    ProjectId:
      name: projectId
      in: path
      required: true
      schema:
        type: string
        example: 2mJ8kQ4vXw9aB3cD5eF7gH1iK0L
  schemas:
    Source:
      type: object
      properties:
        id:
          type: string
        project_id:
          type: string
        name:
          type: string
        type:
          type: string
          enum:
            - webhook
            - whatsapp
            - gmail
            - outlook
            - imap
            - http_poll
        is_default:
          type: boolean
        status:
          type: string
          enum:
            - active
            - paused
            - needs_reauth
            - error
            - disabled_plan
        status_reason:
          type: string
        url:
          type: string
          description: Webhook and WhatsApp sources only.
        signing_enabled:
          type: boolean
        signing_secret:
          type: 'null'
          description: Always null here. Read the secret in the dashboard.
        signature_header:
          type: string
        rate_limit:
          type: integer
        config:
          type: object
          additionalProperties: true
        last_event_at:
          type:
            - string
            - 'null'
          format: date-time
        created_at:
          type: string
          format: date-time
      additionalProperties: true
    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'
    NotFound:
      description: No such project or event in this workspace.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: A workspace API key. You can also send it in the `X-API-Key` header.

````