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

# Public Quickscore

> Public endpoint used by the homepage Quickscore form and the `/quickscore` page.
No authentication required. Returns a synthesized maturity snapshot for any product URL.

v1 is fully synthesized (no real crawl, zero LLM cost). Rate-limited server-side.

**Permission:** Public (no auth required)




## OpenAPI

````yaml post /api/quickscore
openapi: 3.1.0
info:
  title: Dacard.ai API
  description: >
    Decision intelligence platform for AI-native product teams.

    Score, connect, and compound your product maturity across two original
    frameworks.
  version: 0.1.0
  contact:
    name: Darren Card
    email: darren@darrencard.com
    url: https://darrencard.com
  license:
    name: Proprietary
servers:
  - url: https://app.dacard.ai
    description: Production
  - url: http://localhost:3001
    description: Local development
security: []
tags:
  - name: Scoring
    description: AI maturity scoring engine
  - name: Lifecycle
    description: Development Lifecycle assessment
  - name: Products
    description: Product management and analytics
  - name: Dashboard
    description: Dashboard and suite analytics
  - name: Account
    description: Account and team management
  - name: Billing
    description: Stripe billing integration
  - name: User
    description: User profile, onboarding, and preferences
  - name: System
    description: Health checks and diagnostics
  - name: Internal
    description: Internal and admin endpoints (PQL tracking, demo data management)
  - name: Agents
    description: Agent Studio - autonomous AI agents, triggers, and artifacts
  - name: Intelligence
    description: Alerts, coaching context, and score timeline
  - name: Anomalies
    description: Signal anomaly detection, acknowledgment, and sensitivity overrides
  - name: Outcomes
    description: Longitudinal outcome observations for validation study (E2.2)
  - name: Settings
    description: User and account notification preferences
  - name: Webhooks
    description: Outbound webhook management
  - name: API Keys
    description: API key management (Team and Enterprise plans)
paths:
  /api/quickscore:
    post:
      tags:
        - Scoring
      summary: Public quickscore (paste-a-URL)
      description: >
        Public endpoint used by the homepage Quickscore form and the
        `/quickscore` page.

        No authentication required. Returns a synthesized maturity snapshot for
        any product URL.


        v1 is fully synthesized (no real crawl, zero LLM cost). Rate-limited
        server-side.


        **Permission:** Public (no auth required)
      operationId: quickscoreUrl
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - url
              properties:
                url:
                  type: string
                  format: uri
                  description: Product URL to score
                  example: https://linear.app
      responses:
        '200':
          description: Quickscore result
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    $ref: '#/components/schemas/QuickscoredResult'
        '400':
          description: Invalid or unparseable URL
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Unexpected server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    QuickscoredResult:
      type: object
      description: >-
        Synthesized maturity snapshot returned by the public quickscore endpoint
        (v1 - no real crawl)
      properties:
        url:
          type: string
          format: uri
          description: The URL that was scored
        stage:
          type: string
          description: Overall maturity stage name
          enum:
            - React
            - Augment
            - Orchestrate
            - Lead
            - Compound
        score:
          type: number
          minimum: 1
          maximum: 5
          description: Composite maturity score
        dimensions:
          type: array
          description: Per-dimension breakdown
          items:
            type: object
            properties:
              dimensionId:
                type: string
              score:
                type: number
        generatedAt:
          type: string
          format: date-time
          description: When the quickscore was generated
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Machine-readable error message
        code:
          type: string
          description: Error code
          enum:
            - AUTH_REQUIRED
            - FORBIDDEN
            - NOT_FOUND
            - INVALID_URL
            - CRAWL_FAILED
            - SCORE_FAILED
            - QUOTA_EXCEEDED
            - ANON_RATE_LIMIT
            - SIGNAL_RATE_LIMITED
            - SIGNAL_VALIDATION_FAILED
            - SERVER_ERROR
        message:
          type: string
          description: Human-readable message
        details:
          description: Additional context

````