> ## Documentation Index
> Fetch the complete documentation index at: https://psxdata.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Sectors



## OpenAPI

````yaml /openapi.json get /sectors
openapi: 3.1.0
info:
  title: psxdata
  version: 0.1.0
servers:
  - url: https://psxdata-api.fastapicloud.dev
security: []
paths:
  /sectors:
    get:
      tags:
        - sectors
      summary: List Sectors
      operationId: list_sectors_sectors_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SectorsResponse'
components:
  schemas:
    SectorsResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/SectorRow'
          type: array
          title: Data
        meta:
          $ref: '#/components/schemas/MetaList'
      type: object
      required:
        - data
        - meta
      title: SectorsResponse
    SectorRow:
      properties:
        sector_code:
          type: string
          title: Sector Code
        sector_name:
          type: string
          title: Sector Name
        advance:
          type: integer
          title: Advance
        decline:
          type: integer
          title: Decline
        unchanged:
          type: integer
          title: Unchanged
        turnover:
          type: integer
          title: Turnover
        market_cap_b:
          type: number
          title: Market Cap B
      type: object
      required:
        - sector_code
        - sector_name
        - advance
        - decline
        - unchanged
        - turnover
        - market_cap_b
      title: SectorRow
    MetaList:
      properties:
        timestamp:
          type: string
          title: Timestamp
        cached:
          type: boolean
          title: Cached
        count:
          type: integer
          title: Count
      type: object
      required:
        - timestamp
        - cached
        - count
      title: MetaList
      description: Metadata block for list responses. Always includes count.

````