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

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

# List products

`GET` `/api/v1.1/petrochemicals/products`

Operation ID: `getPetrochemicalsProducts`

Returns the products 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/petrochemicals/products:
    get:
      tags:
        - Petrochemicals
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: "#/components/schemas/PetrochemicalProduct"
      summary: List products
      description: Returns the products available on this layer.
      operationId: getPetrochemicalsProducts
      parameters: []
security:
  - ApiKeyAuth: []
components:
  schemas:
    PetrochemicalProduct:
      type: object
      properties:
        productID:
          type: integer
          format: int32
        productNameAr:
          type: string
          nullable: true
        productNameEn:
          type: string
          nullable: true
        descriptionAr:
          type: string
          nullable: true
        descriptionEn:
          type: string
          nullable: true
        utilizationEn:
          type: string
          nullable: true
        utilizationAr:
          type: string
          nullable: true
        categoryID:
          type: integer
          format: int32
        attributeID:
          type: integer
          format: int32
          nullable: true
        isPublic:
          type: boolean
        isChartEnabledForReport:
          type: boolean
          nullable: true
        regionID:
          type: integer
          format: int32
        regionNameAr:
          type: string
          nullable: true
        regionNameEn:
          type: string
          nullable: true
        productPrice:
          type: number
          format: double
        changeInPrice:
          type: number
          format: double
          nullable: true
        entryDate:
          type: string
          format: date-time
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
