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

# List policies



## OpenAPI

````yaml /yasmina-schengen-travel-insurance/openapi.json get /policies
openapi: 3.0.1
info:
  title: Schengen Travel Insurance
  version: 1.0.0
servers:
  - url: https://sandbox.yasmina.ai/api/v1/yasmina-schengen-travel
  - url: https://production.yasmina.ai/api/v1/yasmina-schengen-travel
security:
  - Oauth2: []
paths:
  /policies:
    get:
      tags:
        - Policies
      summary: List policies
      parameters:
        - name: Accept
          in: header
          schema:
            type: string
            default: application/json
          example: application/json
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````