ARGUS Enterprise · Capability

Argus Enterprise Core API — Valuations

Argus Enterprise Core API — Valuations. 3 operations. Lead operation: Argus Enterprise List Property Valuations. Self-contained Naftiko capability covering one Argus Enterprise business surface.

Run with Naftiko Argus EnterpriseValuations

What You Can Do

GET
Listpropertyvaluations — Argus Enterprise List Property Valuations
/v1/properties/{propertyid}/valuations
POST
Createpropertyvaluation — Argus Enterprise Create a Property Valuation
/v1/properties/{propertyid}/valuations
GET
Listvaluations — Argus Enterprise List All Valuations
/v1/valuations

MCP Tools

argus-enterprise-list-property-valuations

Argus Enterprise List Property Valuations

read-only idempotent
argus-enterprise-create-property-valuation

Argus Enterprise Create a Property Valuation

argus-enterprise-list-all-valuations

Argus Enterprise List All Valuations

read-only idempotent

Capability Spec

core-valuations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Argus Enterprise Core API — Valuations
  description: 'Argus Enterprise Core API — Valuations. 3 operations. Lead operation: Argus Enterprise List Property Valuations.
    Self-contained Naftiko capability covering one Argus Enterprise business surface.'
  tags:
  - Argus Enterprise
  - Valuations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ARGUS_ENTERPRISE_API_KEY: ARGUS_ENTERPRISE_API_KEY
capability:
  consumes:
  - type: http
    namespace: core-valuations
    baseUri: https://api.argusenterprise.com/v1
    description: Argus Enterprise Core API — Valuations business capability. Self-contained, no shared references.
    resources:
    - name: properties-propertyId-valuations
      path: /properties/{propertyId}/valuations
      operations:
      - name: listpropertyvaluations
        method: GET
        description: Argus Enterprise List Property Valuations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createpropertyvaluation
        method: POST
        description: Argus Enterprise Create a Property Valuation
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: valuations
      path: /valuations
      operations:
      - name: listvaluations
        method: GET
        description: Argus Enterprise List All Valuations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: methodology
          in: query
          type: string
          description: Filter by valuation methodology
        - name: valuationDateFrom
          in: query
          type: string
          description: Filter valuations from this date
        - name: valuationDateTo
          in: query
          type: string
          description: Filter valuations up to this date
    authentication:
      type: bearer
      token: '{{env.ARGUS_ENTERPRISE_API_KEY}}'
  exposes:
  - type: rest
    namespace: core-valuations-rest
    port: 8080
    description: REST adapter for Argus Enterprise Core API — Valuations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/properties/{propertyid}/valuations
      name: properties-propertyid-valuations
      description: REST surface for properties-propertyId-valuations.
      operations:
      - method: GET
        name: listpropertyvaluations
        description: Argus Enterprise List Property Valuations
        call: core-valuations.listpropertyvaluations
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createpropertyvaluation
        description: Argus Enterprise Create a Property Valuation
        call: core-valuations.createpropertyvaluation
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/valuations
      name: valuations
      description: REST surface for valuations.
      operations:
      - method: GET
        name: listvaluations
        description: Argus Enterprise List All Valuations
        call: core-valuations.listvaluations
        with:
          methodology: rest.methodology
          valuationDateFrom: rest.valuationDateFrom
          valuationDateTo: rest.valuationDateTo
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: core-valuations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Argus Enterprise Core API — Valuations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: argus-enterprise-list-property-valuations
      description: Argus Enterprise List Property Valuations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-valuations.listpropertyvaluations
      outputParameters:
      - type: object
        mapping: $.
    - name: argus-enterprise-create-property-valuation
      description: Argus Enterprise Create a Property Valuation
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: core-valuations.createpropertyvaluation
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: argus-enterprise-list-all-valuations
      description: Argus Enterprise List All Valuations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: core-valuations.listvaluations
      with:
        methodology: tools.methodology
        valuationDateFrom: tools.valuationDateFrom
        valuationDateTo: tools.valuationDateTo
      outputParameters:
      - type: object
        mapping: $.