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

# /hk01/articles/latest

> Newsroom-wide 即時 feed of HK01 (香港01): every article the newsroom publishes, newest first, across all zones and channels. Returns the same article objects as hk01/articles minus the body.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/news-publishing.json post /api/hk01/articles/latest
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/hk01/articles/latest:
    post:
      tags:
        - /hk01
      summary: /hk01/articles/latest
      description: >-
        Newsroom-wide 即時 feed of HK01 (香港01): every article the newsroom
        publishes, newest first, across all zones and channels. Returns the same
        article objects as hk01/articles minus the body.


        **Price:** 1 credit
      operationId: __api_hk01_articles_latest_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Hk01ArticlesLatestPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Hk01ArticleCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Hk01ArticlesLatestPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        count:
          type: integer
          minimum: 1
        locale:
          $ref: '#/components/schemas/Hk01Locale'
          default: zh-HK
      type: object
      required:
        - count
    Hk01ArticleCard:
      properties:
        '@type':
          type: string
          default: Hk01ArticleCard
        id:
          type: integer
        article_title:
          type: string
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        authors:
          items:
            type: string
          type: array
          default: []
        zone:
          anyOf:
            - $ref: '#/components/schemas/Hk01ArticleZone'
            - type: 'null'
        main_category_id:
          anyOf:
            - type: integer
            - type: 'null'
        main_category:
          anyOf:
            - type: string
            - type: 'null'
        categories:
          items:
            $ref: '#/components/schemas/Hk01Category'
          type: array
          default: []
        tags:
          items:
            $ref: '#/components/schemas/Hk01Tag'
          type: array
          default: []
        is_featured:
          type: boolean
          default: false
        is_sponsored:
          type: boolean
          default: false
        image:
          anyOf:
            - type: string
            - type: 'null'
        original_image:
          anyOf:
            - type: string
            - type: 'null'
        thumbnails:
          items:
            $ref: '#/components/schemas/Hk01Image'
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        video_count:
          anyOf:
            - type: integer
            - type: 'null'
        video:
          anyOf:
            - $ref: '#/components/schemas/Hk01Video'
            - type: 'null'
        reactions:
          items:
            $ref: '#/components/schemas/Hk01Reaction'
          type: array
          default: []
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - article_title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    Hk01Locale:
      type: string
      enum:
        - zh-HK
        - zh-CN
    Hk01ArticleZone:
      properties:
        '@type':
          type: string
          default: Hk01ArticleZone
        id:
          type: integer
        name:
          type: string
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    Hk01Category:
      properties:
        '@type':
          type: string
          default: Hk01Category
        id:
          type: integer
        name:
          type: string
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    Hk01Tag:
      properties:
        '@type':
          type: string
          default: Hk01Tag
        id:
          type: integer
        name:
          type: string
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        is_sponsored:
          type: boolean
          default: false
      type: object
      required:
        - id
        - name
    Hk01Image:
      properties:
        '@type':
          type: string
          default: Hk01Image
        image:
          type: string
        media_id:
          anyOf:
            - type: integer
            - type: 'null'
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - image
    Hk01Video:
      properties:
        '@type':
          type: string
          default: Hk01Video
        id:
          type: string
        duration:
          anyOf:
            - type: integer
            - type: 'null'
        source_type:
          anyOf:
            - type: string
            - type: 'null'
        video_type:
          anyOf:
            - type: string
            - type: 'null'
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    Hk01Reaction:
      properties:
        '@type':
          type: string
          default: Hk01Reaction
        name:
          type: string
        reaction_count:
          type: integer
      type: object
      required:
        - name
        - reaction_count
    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

````