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

> Get a full Yonhap News Agency item by content id (or article URL): headline, sub-headlines, full body text, AI three-line summary, reporters with their profile ids, desk, section and topic taxonomy, keywords, images with wire captions, related items, plus reader reactions and share counters. Works across all eight Yonhap editions (Korean, English, Chinese, Japanese, Arabic, Spanish, French, Vietnamese) and for photo, graphic and video items.

**Price:** 1 credit

**⚠️ Common errors:** 412: Item not found: well-formed id that the requested edition does not publish, or a wire frame that has no standalone page



## OpenAPI

````yaml /openapi/news-publishing.json post /api/yonhap/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/articles:
    post:
      tags:
        - /yonhap
      summary: /yonhap/articles
      description: >-
        Get a full Yonhap News Agency item by content id (or article URL):
        headline, sub-headlines, full body text, AI three-line summary,
        reporters with their profile ids, desk, section and topic taxonomy,
        keywords, images with wire captions, related items, plus reader
        reactions and share counters. Works across all eight Yonhap editions
        (Korean, English, Chinese, Japanese, Arabic, Spanish, French,
        Vietnamese) and for photo, graphic and video items.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Item not found: well-formed id that the
        requested edition does not publish, or a wire frame that has no
        standalone page
      operationId: __api_yonhap_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YonhapArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YonhapArticle'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YonhapArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        article:
          type: string
          minLength: 1
        language:
          anyOf:
            - $ref: '#/components/schemas/YonhapLanguage'
            - type: 'null'
      type: object
      required:
        - article
    YonhapArticle:
      properties:
        '@type':
          type: string
          default: YonhapArticle
        id:
          type: string
        language:
          type: string
        article_title:
          type: string
        subtitles:
          items:
            type: string
          type: array
          default: []
        text:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          items:
            type: string
          type: array
          default: []
        web_url:
          type: string
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        section:
          anyOf:
            - type: string
            - type: 'null'
        section_path:
          anyOf:
            - type: string
            - type: 'null'
        section_name:
          anyOf:
            - type: string
            - type: 'null'
        topics:
          items:
            type: string
          type: array
          default: []
        keywords:
          items:
            type: string
          type: array
          default: []
        authors:
          items:
            $ref: '#/components/schemas/YonhapArticleAuthor'
          type: array
          default: []
        writer_name:
          anyOf:
            - type: string
            - type: 'null'
        desk:
          anyOf:
            - type: string
            - type: 'null'
        residence_zone:
          anyOf:
            - type: string
            - type: 'null'
        urgency:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            $ref: '#/components/schemas/YonhapArticleImage'
          type: array
          default: []
        videos:
          items:
            type: string
          type: array
          default: []
        duration:
          anyOf:
            - type: string
            - type: 'null'
        related_articles:
          items:
            $ref: '#/components/schemas/YonhapRelatedArticle'
          type: array
          default: []
        reactions:
          anyOf:
            - $ref: '#/components/schemas/YonhapArticleReactions'
            - type: 'null'
        shares:
          anyOf:
            - $ref: '#/components/schemas/YonhapArticleShares'
            - type: 'null'
      type: object
      required:
        - id
        - language
        - article_title
        - web_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YonhapLanguage:
      type: string
      enum:
        - ko
        - en
        - zh
        - ja
        - ar
        - es
        - fr
        - vi
    YonhapArticleAuthor:
      properties:
        '@type':
          type: string
          default: YonhapArticleAuthor
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    YonhapArticleImage:
      properties:
        '@type':
          type: string
          default: YonhapArticleImage
        id:
          anyOf:
            - type: string
            - type: 'null'
        image:
          type: string
        caption:
          anyOf:
            - type: string
            - type: 'null'
        image_title:
          anyOf:
            - type: string
            - type: 'null'
        is_main:
          type: boolean
          default: false
      type: object
      required:
        - image
    YonhapRelatedArticle:
      properties:
        '@type':
          type: string
          default: YonhapRelatedArticle
        id:
          type: string
        article_title:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          type: string
      type: object
      required:
        - id
        - web_url
    YonhapArticleReactions:
      properties:
        '@type':
          type: string
          default: YonhapArticleReactions
        like_count:
          type: integer
          default: 0
        sad_count:
          type: integer
          default: 0
        angry_count:
          type: integer
          default: 0
        follow_up_count:
          type: integer
          default: 0
        total_count:
          type: integer
          default: 0
      type: object
    YonhapArticleShares:
      properties:
        '@type':
          type: string
          default: YonhapArticleShares
        kakao_talk_count:
          type: integer
          default: 0
        kakao_story_count:
          type: integer
          default: 0
        facebook_count:
          type: integer
          default: 0
        facebook_messenger_count:
          type: integer
          default: 0
        x_count:
          type: integer
          default: 0
        naver_band_count:
          type: integer
          default: 0
        naver_blog_count:
          type: integer
          default: 0
        url_count:
          type: integer
          default: 0
        native_count:
          type: integer
          default: 0
        total_count:
          type: integer
          default: 0
      type: object
    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

````