---
title: "ConsumerGoodPriceHistoryResponse"
url: "https://developer.argaam.com/apis/macroeconomic-layer-api-sandbox-v1/versions/e4c9f983-817a-417e-bfa3-115c2b14f8bd/schemas/ConsumerGoodPriceHistoryResponse"
---

> Full API specification: https://developer.argaam.com/apis/macroeconomic-layer-api-sandbox-v1/versions/e4c9f983-817a-417e-bfa3-115c2b14f8bd.md

# ConsumerGoodPriceHistoryResponse

Price history for a single material.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Macroeconomic Layer API
  version: v1.1
servers:
  - url: https://api-sandbox.argaam.com
    description: Argaam API Gateway (Sandbox)
components:
  schemas:
    ConsumerGoodPriceEntry:
      type: object
      properties:
        forDate:
          type: string
          description: Observation date (`yyyy-MM-dd`).
          nullable: true
        price:
          type: number
          format: double
      additionalProperties: false
      description: A single date-price observation in a history series.
    ConsumerGoodPriceHistoryResponse:
      type: object
      properties:
        materialID:
          type: integer
          format: int32
        materialNameAr:
          type: string
          nullable: true
        materialNameEn:
          type: string
          nullable: true
        prices:
          type: array
          items:
            $ref: "#/components/schemas/ConsumerGoodPriceEntry"
          nullable: true
      additionalProperties: false
      description: Price history for a single material.
```
