---
title: "Latest value of the Argaam Petrochemical Price Index."
url: "https://developer.argaam.com/apis/macroeconomic-layer-api-production-v1/versions/eeada0b4-178b-4972-8713-f497c9940530/operations/getPetrochemicalsIndex"
---

> Full API specification: https://developer.argaam.com/apis/macroeconomic-layer-api-production-v1/versions/eeada0b4-178b-4972-8713-f497c9940530.md

# Latest value of the Argaam Petrochemical Price Index.

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

Operation ID: `getPetrochemicalsIndex`

Returns the current index level plus daily / weekly / monthly changes. Drop into a header ticker on a sector dashboard. ### Example ``` GET /api/v1.1/petrochemicals/index ```

## Responses

- `200` - Success

## OpenAPI definition

````yaml
openapi: 3.0.1
info:
  title: Macroeconomic Layer API
  version: v1.1
servers:
  - url: https://api.argaam.com
    description: Argaam API Gateway (Production)
paths:
  /api/v1.1/petrochemicals/index:
    get:
      tags:
        - Petrochemicals
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/PetrochemicalPriceIndex"
      summary: Latest value of the Argaam Petrochemical Price Index.
      description: "Returns the current index level plus daily / weekly / monthly\r

        changes. Drop into a header ticker on a sector dashboard.\r

        \            \r

        ### Example\r

        ```\r

        GET /api/v1.1/petrochemicals/index\r

        ```"
      operationId: getPetrochemicalsIndex
      parameters: []
security:
  - ApiKeyAuth: []
components:
  schemas:
    PetrochemicalPriceIndex:
      type: object
      properties:
        date:
          type: string
          format: date-time
        priceValue:
          type: number
          format: double
          nullable: true
        change:
          type: number
          format: double
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
````
