> ## 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 my scores



## OpenAPI

````yaml /api-reference/openapi.json get /v1/me/scores
openapi: 3.0.0
info:
  version: 1.0.0
  title: Caplia Investor API
  description: >-
    Public REST API for the Caplia Investor Portal. Auth: `Authorization: Bearer
    cap_inv_live_<32 chars>`.
  contact:
    name: Caplia
    url: https://docs.venture.caplia.ai
servers:
  - url: https://api.venture.caplia.ai
    description: Production
security: []
paths:
  /v1/me/scores:
    get:
      tags:
        - Founder (me)
      summary: Get my scores
      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
                        match_score:
                          type: number
                          nullable: true
                        score:
                          type: number
                          nullable: true
                        thesis_fit_score:
                          type: number
                          nullable: true
                        scoring_status:
                          type: string
                      required:
                        - thesis_id
                        - thesis_name
                        - match_score
                        - score
                        - thesis_fit_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
        '500':
          description: Internal server error
          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

````