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

> Shows prices from different insurance companies based on the provided property and contents cost. You must provide at least one of property_cost or contents_cost. You can also provide both



## OpenAPI

````yaml /property-api-reference/openapi.json get /prices
openapi: 3.0.1
info:
  title: OpenAPI For Property Insurance
  description: APIs for requesting and managing policies for your clients
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://sandbox.yasmina.ai/api/v1/property
  - url: https://production.yasmina.ai/api/v1/property
security:
  - bearerAuth: []
paths:
  /prices:
    get:
      tags:
        - Prices
      summary: List prices
      description: >-
        Shows prices from different insurance companies based on the provided
        property and contents cost. You must provide at least one of
        property_cost or contents_cost. You can also provide both
      parameters:
        - name: property_cost
          in: query
          schema:
            type: number
          required: false
        - name: contents_cost
          in: query
          schema:
            type: number
          required: false
      responses:
        '200':
          description: Success in listing prices
          content:
            application/json:
              schema:
                type: object
                properties:
                  walaa:
                    type: object
                    properties:
                      name:
                        type: string
                        example: Walaa
                      name_ar:
                        type: string
                      logo:
                        type: string
                        format: uri
                      coverages:
                        type: array
                        items:
                          type: string
                      price:
                        type: number
                        example: 476.1
                example:
                  tawuniya:
                    name: Tawuniya
                    name_ar: التعاونية
                    logo: https://sandbox.yasmina.ai/images/tawuniya-logo.png
                    coverages:
                      - fires
                      - explosion
                      - storms
                      - floods
                      - maintenance
                      - ac_repair
                      - emergency_repairs
                      - theft
                      - earthquakes
                    price: 476.1
                  medgulf:
                    name: Medgulf
                    name_ar: ميدغلف
                    logo: https://sandbox.yasmina.ai/images/medgulf-logo.png
                    benefits:
                      - fires
                      - explosion
                      - storms
                      - floods
                      - maintenance
                      - emergency_repairs
                      - theft
                      - earthquakes
                    price: 508.3
                  walaa:
                    name: Walaa
                    name_ar: ولاء
                    logo: https://sandbox.yasmina.ai/images/walaa-logo.jpeg
                    benefits:
                      - fires
                      - explosion
                      - storms
                      - floods
                      - maintenance
                      - emergency_repairs
                      - theft
                      - earthquakes
                      - liability
                    price: 603.75
                  takaful_alrajhi:
                    name: Takaful Alrajhi
                    name_ar: تكافل الراجحي
                    logo: >-
                      https://mdckhobar.sa/wp-content/uploads/2024/10/Al-Rajhi-Takaful.png
                    benefits:
                      - fires
                      - explosion
                      - storms
                      - floods
                      - maintenance
                      - emergency_repairs
                      - theft
                      - earthquakes
                      - srcc_protection
                      - business_interruption
                    price: 399.05
                  wataniyeh:
                    name: Wataniyeh
                    name_ar: الوطنية
                    logo: >-
                      https://www.jordanfinancialservices.com/sites/default/files/images/logos/nic-01.jpg
                    benefits:
                      - fires
                      - explosion
                      - storms
                      - floods
                      - maintenance
                      - emergency_repairs
                      - theft
                      - earthquakes
                      - accidental_home_damage
                    price: 632.5
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````