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

# Get Funnel

> Return aggregate, server-verified onboarding funnel evidence for this organization. Each result names its deduplication grain; anonymous and untrusted public correlation data is never returned.



## OpenAPI

````yaml /openapi.json get /v1/orgs/{orgId}/telemetry/funnel
openapi: 3.1.0
info:
  title: Korve API
  version: 0.1.0
  description: >-
    Typed control plane for deploying applications and explicitly provisioning
    their managed infrastructure.
servers:
  - url: https://api.korve.dev
security: []
paths:
  /v1/orgs/{orgId}/telemetry/funnel:
    get:
      tags:
        - productTelemetry
      summary: Get Funnel
      description: >-
        Return aggregate, server-verified onboarding funnel evidence for this
        organization. Each result names its deduplication grain; anonymous and
        untrusted public correlation data is never returned.
      operationId: productTelemetry.getFunnel
      parameters:
        - name: orgId
          in: path
          required: true
          schema:
            type: string
          description: The organization's id (UUID) or slug — either form is accepted.
        - name: since
          in: query
          required: false
          schema:
            type: string
            format: date-time
          description: Window start (RFC 3339). Defaults to 30 days before until.
        - name: until
          in: query
          required: false
          schema:
            type: string
            format: date-time
          description: Exclusive window end (RFC 3339). Defaults to now.
      responses:
        '200':
          description: >-
            Aggregate authoritative event counts, explicit grains, and
            first/last evidence timestamps.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                  - since
                  - until
                  - steps
                properties:
                  since:
                    type: string
                    format: date-time
                  until:
                    type: string
                    format: date-time
                  steps:
                    type: array
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - name
                        - grain
                        - count
                        - firstAt
                        - lastAt
                      properties:
                        name:
                          type: string
                          enum:
                            - billing_activated
                            - first_deploy_ready
                            - agent_connected
                        grain:
                          type: string
                          enum:
                            - organization
                            - agent_grant
                        count:
                          type: integer
                          minimum: 0
                        firstAt:
                          type:
                            - string
                            - 'null'
                          format: date-time
                        lastAt:
                          type:
                            - string
                            - 'null'
                          format: date-time
        '422':
          description: The requested window is invalid or exceeds 90 days.
      security:
        - apiKey: []
        - session: []
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: korve_api_key
    session:
      type: apiKey
      in: cookie
      name: korve.session_token

````