---
title: "List comparable deployments"
url: "https://real-estate-agency.apim.eu/apis/cost-estimation/versions/26a287d6-a67c-4989-b0bd-79a9db45597a/operations/listComparables"
---

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

# List comparable deployments

`GET` `/comparables`

Operation ID: `listComparables`

Anonymized deployments from across the org. Team names are rounded up to the business-unit level so no individual deployment can be traced back.

## Query parameters

- `business_unit` (string, required)
- `category` (string, required)
- `integration_count` (number, float, optional) - Reference size; matches are searched within a ±20 percent corridor.
- `period_months` (integer, optional)

## Responses

- `200` - Comparable deployments
- `401` - Key is missing, revoked or invalid

## 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
paths:
  /comparables:
    get:
      tags:
        - Comparables
      summary: List comparable deployments
      description: |
        Anonymized deployments from across the org. Team names are rounded up
        to the business-unit level so no individual deployment can be traced
        back.
      operationId: listComparables
      parameters:
        - name: business_unit
          in: query
          required: true
          schema:
            type: string
            example: Customer Success
        - name: category
          in: query
          required: true
          schema:
            type: string
            enum:
              - copilot
              - autonomous-agent
              - workflow-agent
              - rag-assistant
              - voice-agent
        - name: integration_count
          in: query
          description: Reference size; matches are searched within a ±20 percent corridor.
          schema:
            type: number
            format: float
            example: 6
        - name: period_months
          in: query
          schema:
            type: integer
            minimum: 3
            maximum: 36
            default: 12
      responses:
        "200":
          description: Comparable deployments
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: "#/components/schemas/Comparable"
                  stats:
                    $ref: "#/components/schemas/Metrics"
        "401":
          $ref: "#/components/responses/NotAuthenticated"
security:
  - apiKey: []
components:
  schemas:
    Comparable:
      type: object
      properties:
        business_unit_rounded:
          type: string
          example: Customer Success
        integration_count:
          type: number
          format: float
          example: 5
        tool_count:
          type: number
          format: float
          example: 4
        model_release_date:
          type: string
          format: date
          example: 2026-01-15
        monthly_cost_usd:
          type: integer
          example: 6100
        cost_per_1k_requests_usd:
          type: number
          format: float
          example: 24.8
        deployed_month:
          type: string
          example: 2026-03
    Metrics:
      type: object
      properties:
        count:
          type: integer
          example: 23
        median_cost_per_1k_requests_usd:
          type: number
          format: float
          example: 25.1
        lower_quartile_cost_per_1k_requests_usd:
          type: number
          format: float
          example: 21.4
        upper_quartile_cost_per_1k_requests_usd:
          type: number
          format: float
          example: 28.9
    Error:
      type: object
      description: Uniform error format across all Nexora AI APIs.
      required:
        - code
        - message
      properties:
        code:
          type: string
          example: validation_failed
        message:
          type: string
          example: Too few comparable deployments are available for this business unit.
        details:
          type: array
          items:
            $ref: "#/components/schemas/ErrorDetail"
    ErrorDetail:
      type: object
      properties:
        field:
          type: string
          example: basis.comparables_count
        reason:
          type: string
          example: missing
  responses:
    NotAuthenticated:
      description: Key is missing, revoked or invalid
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/Error"
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: |
        Every call carries an API key in the `apikey` header. You generate the
        key in the Nexora AI portal under "My Apps"; it's shown exactly once.

        Each key has the scopes it's allowed to use attached to it. If one is
        missing, the API responds with `403` and `code: "scope_missing"`; the
        missing scope is in `details[].field`.
```
