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

> Read the reader engagement counters Yonhap News Agency publishes for its wire items, for up to 200 content ids in one call: the four reaction buttons (like, sad, angry, request a follow-up) and the per-network share counters, alongside the headline, dispatch time and the items the desk linked as related.

**Price:** 1 credit

**⚠️ Common errors:** 412: None of the requested content ids resolved



## OpenAPI

````yaml /openapi/news-publishing.json post /api/yonhap/articles/reactions
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/reactions:
    post:
      tags:
        - /yonhap
      summary: /yonhap/articles/reactions
      description: >-
        Read the reader engagement counters Yonhap News Agency publishes for its
        wire items, for up to 200 content ids in one call: the four reaction
        buttons (like, sad, angry, request a follow-up) and the per-network
        share counters, alongside the headline, dispatch time and the items the
        desk linked as related.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: None of the requested content ids resolved
      operationId: __api_yonhap_articles_reactions_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YonhapArticlesReactionsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YonhapArticleEngagement'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YonhapArticlesReactionsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        articles:
          items:
            type: string
          type: array
          maxItems: 200
          minItems: 1
      type: object
      required:
        - articles
    YonhapArticleEngagement:
      properties:
        '@type':
          type: string
          default: YonhapArticleEngagement
        id:
          type: string
        language:
          type: string
        article_title:
          type: string
        web_url:
          type: string
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - 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
    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

````