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

# Get Quote

> Returns a premium quote for a specific protocol and coverage amount.



## OpenAPI

````yaml GET /quotes
openapi: 3.1.0
info:
  title: Mithril Protocol API
  description: API for interacting with Mithril, Solana's first insurance protocol.
  version: 1.0.0
servers:
  - url: https://api.mithril.protocol/v1
security: []
paths:
  /quotes:
    get:
      summary: Get Coverage Quote
      description: Returns a premium quote for a specific protocol and coverage amount.
      parameters:
        - name: protocol
          in: query
          required: true
          schema:
            type: string
          description: The protocol to get coverage for (e.g., 'jupiter')
        - name: amount
          in: query
          required: true
          schema:
            type: number
          description: The amount of coverage in USDC
      responses:
        '200':
          description: Quote response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Quote'
components:
  schemas:
    Quote:
      type: object
      properties:
        premium:
          type: number
          description: The premium cost in USDC
        quoteId:
          type: string
        expiresAt:
          type: string
          format: date-time

````