---
title: "Catalogue of all tracked consumer goods (materials)."
url: "https://developer.argaam.com/apis/macroeconomic-layer-api-sandbox-v1/versions/e4c9f983-817a-417e-bfa3-115c2b14f8bd/operations/getConsumerGoods"
---

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

# Catalogue of all tracked consumer goods (materials).

`GET` `/api/v1.1/consumer-goods`

Operation ID: `getConsumerGoods`

Returns the full taxonomy: material id, name (Ar/En), category (food, beverages, building, fuel, etc.), unit, and reference region. ### Example ``` GET /api/v1.1/consumer-goods ```

## Responses

- `200` - Success

## 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)
paths:
  /api/v1.1/consumer-goods:
    get:
      tags:
        - ConsumerGoods
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                type: array
                items: {}
      summary: Catalogue of all tracked consumer goods (materials).
      description: "Returns the full taxonomy: material id, name (Ar/En),\r

        category (food, beverages, building, fuel, etc.), unit, and\r

        reference region.\r

        \            \r

        ### Example\r

        ```\r

        GET /api/v1.1/consumer-goods\r

        ```"
      operationId: getConsumerGoods
      parameters: []
security:
  - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
````
