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

# /centaline/indices

> Latest readings of the Centa-City Leading Index (CCL) family — the benchmark weekly Hong Kong secondary residential price index. Returns the all-territory index plus the Hong Kong Island, Kowloon, New Territories East and New Territories West sub-indices and the large-unit, small/medium-unit and mass-market-estate cuts, each with its week-on-week and month-on-month percentage change, survey and publication dates and the covered week. Optionally returns the full weekly history back to 1994.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/real-estate.json post /api/centaline/indices
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/centaline/indices:
    post:
      tags:
        - /centaline
      summary: /centaline/indices
      description: >-
        Latest readings of the Centa-City Leading Index (CCL) family — the
        benchmark weekly Hong Kong secondary residential price index. Returns
        the all-territory index plus the Hong Kong Island, Kowloon, New
        Territories East and New Territories West sub-indices and the
        large-unit, small/medium-unit and mass-market-estate cuts, each with its
        week-on-week and month-on-month percentage change, survey and
        publication dates and the covered week. Optionally returns the full
        weekly history back to 1994.


        **Price:** 1 credit
      operationId: __api_centaline_indices_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CentalineIndicesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CentalineIndex'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CentalineIndicesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        lang:
          $ref: '#/components/schemas/CentalineLang'
          default: hk
        with_history:
          type: boolean
          default: false
      type: object
    CentalineIndex:
      properties:
        '@type':
          type: string
          default: CentalineIndex
        id:
          type: string
        name:
          type: string
        value:
          anyOf:
            - type: number
            - type: 'null'
        week_change_percent:
          anyOf:
            - type: number
            - type: 'null'
        month_change_percent:
          anyOf:
            - type: number
            - type: 'null'
        survey_at:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        period_start_at:
          anyOf:
            - type: integer
            - type: 'null'
        period_end_at:
          anyOf:
            - type: integer
            - type: 'null'
        chart_url:
          anyOf:
            - type: string
            - type: 'null'
        history:
          items:
            $ref: '#/components/schemas/CentalineIndexPoint'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CentalineLang:
      type: string
      enum:
        - hk
        - sc
        - en
    CentalineIndexPoint:
      properties:
        '@type':
          type: string
          default: CentalineIndexPoint
        recorded_at:
          type: integer
        value:
          type: number
      type: object
      required:
        - recorded_at
        - value
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````