> ## 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 Indices



## OpenAPI

````yaml /openapi.json get /indices
openapi: 3.1.0
info:
  title: psxdata
  version: 0.1.0
servers:
  - url: https://psxdata-api.fastapicloud.dev
security: []
paths:
  /indices:
    get:
      tags:
        - indices
      summary: List Indices
      operationId: list_indices_indices_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StringListResponse'
components:
  schemas:
    StringListResponse:
      properties:
        data:
          items:
            type: string
          type: array
          title: Data
        meta:
          $ref: '#/components/schemas/MetaList'
      type: object
      required:
        - data
        - meta
      title: StringListResponse
    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.

````