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

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

# List prices

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

Operation ID: `getConsumerGoodsPrices`

Returns the prices available on this layer.

## 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/prices:
    get:
      tags:
        - ConsumerGoods
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                type: array
                items: {}
      summary: List prices
      description: Returns the prices available on this layer.
      operationId: getConsumerGoodsPrices
      parameters: []
security:
  - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
