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

# /yonhap/categories/articles

> List the newest items published in a Yonhap News Agency section: content id, headline, lead paragraph, thumbnail, dispatch time and hashtags. Every one of the eight editions (Korean, English, Chinese, Japanese, Arabic, Spanish, French, Vietnamese) is an independent newsroom with its own section tree, so the section catalog depends on the chosen edition.

**Price:** 1 credit

**⚠️ Common errors:** 412: Section page carries no article cards (retired or renamed section)



## OpenAPI

````yaml /openapi/news-publishing.json post /api/yonhap/categories/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/yonhap/categories/articles:
    post:
      tags:
        - /yonhap
      summary: /yonhap/categories/articles
      description: >-
        List the newest items published in a Yonhap News Agency section: content
        id, headline, lead paragraph, thumbnail, dispatch time and hashtags.
        Every one of the eight editions (Korean, English, Chinese, Japanese,
        Arabic, Spanish, French, Vietnamese) is an independent newsroom with its
        own section tree, so the section catalog depends on the chosen edition.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Section page carries no article cards
        (retired or renamed section)
      operationId: __api_yonhap_categories_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YonhapCategoriesArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YonhapCategoryArticle'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YonhapCategoriesArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        category:
          $ref: '#/components/schemas/YonhapCategory'
        language:
          $ref: '#/components/schemas/YonhapLanguage'
          default: ko
        count:
          type: integer
          maximum: 500
          minimum: 1
      type: object
      required:
        - category
        - count
    YonhapCategoryArticle:
      properties:
        '@type':
          type: string
          default: YonhapCategoryArticle
        id:
          type: string
        language:
          type: string
        article_title:
          type: string
        web_url:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        keywords:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - language
        - article_title
        - web_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YonhapCategory:
      type: string
      enum:
        - news
        - politics/all
        - politics/president
        - politics/national-assembly
        - politics/diplomacy
        - politics/defense
        - economy/all
        - economy/economic-policy
        - economy/finance
        - economy/real-estate
        - economy/job-foundation
        - economy/consumer
        - market-plus/all
        - market-plus/domestic-stock
        - market-plus/global-stock
        - market-plus/bond
        - market-plus/fund-etf
        - market-plus/global-market
        - market-plus/financial-investment
        - market-plus/report
        - market-plus/disclosure
        - industry/all
        - industry/industrial-enterprise
        - industry/electronics
        - industry/heavy-chemistry
        - industry/automobile
        - industry/construction
        - industry/energy-resource
        - industry/technology-science
        - industry/game
        - industry/distribution-service-industry
        - industry/venture-business
        - industry/bioindustry-health
        - industry/agriculture
        - industry/ocean-fishery
        - society/all
        - society/accident
        - society/court-prosecution
        - society/education
        - society/welfare-labor
        - society/environment
        - society/women-child
        - society/overseas-koreans
        - society/multiple-cultures
        - local/all
        - local/gyeonggi/index
        - local/incheon/index
        - local/busan/index
        - local/ulsan/index
        - local/gyeongnam/index
        - local/daegu-gyeongbuk/index
        - local/jeonnam-gwangju/index
        - local/jeonbuk/index
        - local/daejeon-chungnam-sejong/index
        - local/chungbuk/index
        - local/gangwon/index
        - local/jeju/index
        - international/all
        - international/correspondents/index
        - international/north-america
        - international/china
        - international/japan
        - international/asia-australia
        - international/europe
        - international/centralsouth-america
        - international/middleeast-africa
        - international/international-org
        - international/press-release
        - culture/all
        - culture/books
        - culture/cartoon
        - culture/religion
        - culture/performance-exhibition
        - culture/scholarship
        - culture/media
        - culture/travel-leisure
        - culture/life-information
        - health/all
        - health/health-note
        - health/weekly-wellness
        - entertainment/all
        - entertainment/tv
        - entertainment/movies
        - entertainment/pop-song
        - entertainment/global-entertainment
        - sports/all
        - sports/baseball
        - sports/football
        - sports/basketball-volleyball
        - sports/golf
        - people/all
        - people/personnel
        - people/obituary-notice
        - people/movement
        - people/ceo
        - people/interview
        - report/issue-in
        - report/factcheck
        - report/ai-prism
        - report/pet/index
        - report/headline
        - national/index
        - national/politics
        - national/diplomacy
        - national/defense
        - national/national
        - nk/index
        - nk/nk
        - sports/sports
        - economy-finance/index
        - economy-finance/economy
        - economy-finance/finance
        - economy-finance/health
        - k-biz/news
        - k-biz/ontherecord
        - k-biz/mna
        - k-biz/corporate
        - k-biz/earnings
        - k-biz/startups
        - k-biz/focus
        - k-biz/stocks
        - culture/index
        - culture/entertainment
        - culture/movies
        - culture/k-pop
        - culture/arts-culture
        - sports/index
        - image/index
        - image/k-wave
        - image/general
        - image/nk
        - image/photos
        - image/gallery
        - image/entertainment
        - video/index
        - paper/index
        - history/index
        - summary/index
        - editorials/index
        - interviews/index
        - features/index
        - k-stories/index
        - press-release/index
        - politics/index
        - economy/index
        - society/index
        - culture-sports/index
        - china-relationship/index
        - indicator/index
        - japan-relationship/index
        - society-culture/index
        - it-science/index
        - entertainment-sports/index
        - major/index
        - international/index
        - hallyu/index
        - diplomacy/index
        - technology/index
        - science-technology/index
        - sports-culture/index
        - life/index
        - economy-technology/index
        - k-tour/index
        - vietnam-news/index
    YonhapLanguage:
      type: string
      enum:
        - ko
        - en
        - zh
        - ja
        - ar
        - es
        - fr
        - vi
    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

````