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

> Get a full HK01 (香港01) article by id or URL: headline, lead, structured body (text paragraphs, inline images with captions, embedded links, related-article blocks), authors, zone, channel, tags, main and original images, video metadata, social reaction counters and publish/update timestamps. Available in traditional (zh-HK) and simplified (zh-CN) Chinese.

**Price:** 1 credit

**⚠️ Common errors:** 412: Article not found, not yet published or no longer available



## OpenAPI

````yaml /openapi/news-publishing.json post /api/hk01/articles
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:
    post:
      tags:
        - /hk01
      summary: /hk01/articles
      description: >-
        Get a full HK01 (香港01) article by id or URL: headline, lead, structured
        body (text paragraphs, inline images with captions, embedded links,
        related-article blocks), authors, zone, channel, tags, main and original
        images, video metadata, social reaction counters and publish/update
        timestamps. Available in traditional (zh-HK) and simplified (zh-CN)
        Chinese.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Article not found, not yet published or no
        longer available
      operationId: __api_hk01_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Hk01ArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Hk01Article'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Hk01ArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        article:
          type: string
          minLength: 1
        locale:
          $ref: '#/components/schemas/Hk01Locale'
          default: zh-HK
      type: object
      required:
        - article
    Hk01Article:
      properties:
        '@type':
          type: string
          default: Hk01Article
        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'
        text:
          anyOf:
            - type: string
            - type: 'null'
        teaser:
          items:
            type: string
          type: array
          default: []
        images:
          items:
            $ref: '#/components/schemas/Hk01Image'
          type: array
          default: []
        blocks:
          items:
            $ref: '#/components/schemas/Hk01ArticleBlock'
          type: array
          default: []
        related_articles:
          items:
            $ref: '#/components/schemas/Hk01RelatedArticle'
          type: array
          default: []
      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
    Hk01ArticleBlock:
      properties:
        '@type':
          type: string
          default: Hk01ArticleBlock
        block_type:
          type: string
        text:
          anyOf:
            - type: string
            - type: 'null'
        links:
          items:
            $ref: '#/components/schemas/Hk01Link'
          type: array
          default: []
        images:
          items:
            $ref: '#/components/schemas/Hk01Image'
          type: array
          default: []
        video:
          anyOf:
            - $ref: '#/components/schemas/Hk01Video'
            - type: 'null'
        questions:
          items:
            $ref: '#/components/schemas/Hk01FaqEntry'
          type: array
          default: []
        html:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        related_articles:
          items:
            $ref: '#/components/schemas/Hk01RelatedArticle'
          type: array
          default: []
      type: object
      required:
        - block_type
    Hk01RelatedArticle:
      properties:
        '@type':
          type: string
          default: Hk01RelatedArticle
        id:
          type: integer
        article_title:
          type: string
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - article_title
    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
    Hk01Link:
      properties:
        '@type':
          type: string
          default: Hk01Link
        text:
          type: string
        web_url:
          type: string
      type: object
      required:
        - text
        - web_url
    Hk01FaqEntry:
      properties:
        '@type':
          type: string
          default: Hk01FaqEntry
        question:
          type: string
        answer:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - question
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````