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

> Listing requested policies



## OpenAPI

````yaml /cartpl-api-reference/openapi.json get /car/policies
openapi: 3.0.1
info:
  title: OpenAPI For Motor Insurance
  description: API's that you need to use to issue insurance policies to your clients
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://sandbox.yasmina.ai/api/v1
    description: Sandbox
  - url: https://production.yasmina.ai/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /car/policies:
    get:
      tags:
        - Policies
      summary: List policies
      description: Listing requested policies
      parameters:
        - name: vin
          in: query
          schema:
            type: string
        - name: car_sequence_number
          in: query
          schema:
            type: string
        - name: current_car_owner
          in: query
          schema:
            type: string
        - name: per_page
          in: query
          schema:
            type: integer
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Policy'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    Policy:
      type: object
      properties:
        id:
          type: integer
        meta_data:
          type: object
        start_date:
          type: string
        provider_policy_id:
          type: integer
        provider_policy:
          type: string
        order_status:
          type: integer
        approval_status:
          type: integer
        end_date:
          type: string
        is_claimed:
          type: boolean
        created_at:
          type: string
        updated_at:
          type: string
        client_id:
          type: string
        canceled_at:
          type: string
          nullable: true
        invoice:
          type: string
        cancellation_document:
          type: string
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              code:
                type: string
                example: '40101'
              message:
                type: string
                example: Unauthenticated
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````