---
title: "CostEstimateResult"
url: "https://real-estate-agency.apim.eu/apis/cost-estimation/versions/26a287d6-a67c-4989-b0bd-79a9db45597a/schemas/CostEstimateResult"
---

> Full API specification: https://real-estate-agency.apim.eu/apis/cost-estimation/versions/26a287d6-a67c-4989-b0bd-79a9db45597a.md

# CostEstimateResult

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Cost & ROI Estimation
  version: 1.0.0
servers:
  - url: https://api.nexora.example/v1
    description: Production
  - url: https://sandbox.api.nexora.example/v1
    description: Sandbox
components:
  schemas:
    EstimateReason:
      type: string
      enum:
        - initial_scoping
        - production_rollout
        - budget_planning
        - renewal
        - decommission
      example: production_rollout
    Range:
      type: object
      properties:
        low:
          type: integer
          example: 6020
        high:
          type: integer
          example: 6740
    EstimateBasis:
      type: object
      description: What the indication was derived from.
      properties:
        comparables_count:
          type: integer
          example: 23
        period_months:
          type: integer
          example: 12
        sample_scope:
          type: string
          enum:
            - team
            - business_unit
            - org_wide
          example: business_unit
    CostEstimateResult:
      type: object
      properties:
        id:
          type: string
          example: est_3e18
        agent_id:
          type: string
          nullable: true
          example: agt_8f2c1a
        reason:
          $ref: "#/components/schemas/EstimateReason"
        estimated_monthly_cost_usd:
          type: integer
          example: 6380
        range_usd:
          $ref: "#/components/schemas/Range"
        cost_per_1k_requests_usd:
          type: number
          format: float
          example: 25.5
        confidence:
          type: string
          description: How reliable the indication is.
          enum:
            - low
            - medium
            - high
        basis:
          $ref: "#/components/schemas/EstimateBasis"
        created_at:
          type: string
          format: date-time
          example: 2026-08-20T09:52:00Z
```
