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

# Get v1mescores



## OpenAPI

````yaml /founder/api-reference/openapi.json get /v1/me/scores
openapi: 3.0.0
info:
  title: Caplia Founder API
  version: 1.0.0
  description: >-
    Read and manage your own company, and run the private deck-scoring loop.
    Authenticated with company-scoped cap_fnd_* keys.
servers:
  - url: https://api.venture.caplia.ai
    description: Production
  - url: https://api-sandbox.venture.caplia.ai
    description: Sandbox
security: []
paths:
  /v1/me/scores:
    get:
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  cri:
                    type: object
                    properties:
                      score:
                        type: number
                        nullable: true
                      max:
                        type: number
                      verified:
                        type: boolean
                      points_to_verified:
                        type: number
                        nullable: true
                      scored_at:
                        type: string
                        nullable: true
                      domains:
                        type: array
                        items:
                          nullable: true
                      recommendations:
                        type: array
                        items:
                          nullable: true
                    required:
                      - score
                      - max
                      - verified
                      - points_to_verified
                      - scored_at
                      - domains
                      - recommendations
                  thesis_matches:
                    type: array
                    items:
                      type: object
                      properties:
                        thesis_id:
                          type: string
                        thesis_name:
                          type: string
                        score:
                          type: number
                          nullable: true
                        scoring_status:
                          type: string
                      required:
                        - thesis_id
                        - thesis_name
                        - score
                        - scoring_status
                required:
                  - cri
                  - thesis_matches
        '403':
          description: Key lacks required scope
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      request_id:
                        type: string
                    required:
                      - code
                      - message
                      - request_id
                required:
                  - error
        '404':
          description: Not found or out of scope
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      request_id:
                        type: string
                    required:
                      - code
                      - message
                      - request_id
                required:
                  - error

````