> ## 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/issues/search

> Browse the catalog of Yonhap News Agency issues - the curated dossiers the newsroom keeps on running stories - optionally narrowed to one desk. Each entry carries the issue id, headline, cover image, how many articles, wire photos, videos and graphics are filed under it, and the three newest headlines.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/news-publishing.json post /api/yonhap/issues/search
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/issues/search:
    post:
      tags:
        - /yonhap
      summary: /yonhap/issues/search
      description: >-
        Browse the catalog of Yonhap News Agency issues - the curated dossiers
        the newsroom keeps on running stories - optionally narrowed to one desk.
        Each entry carries the issue id, headline, cover image, how many
        articles, wire photos, videos and graphics are filed under it, and the
        three newest headlines.


        **Price:** 1 credit
      operationId: __api_yonhap_issues_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YonhapIssuesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YonhapIssueSummary'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YonhapIssuesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        category:
          $ref: '#/components/schemas/YonhapIssueCategory'
          default: all
        count:
          type: integer
          maximum: 360
          minimum: 1
      type: object
      required:
        - count
    YonhapIssueSummary:
      properties:
        '@type':
          type: string
          default: YonhapIssueSummary
        id:
          type: string
        issue_title:
          type: string
        web_url:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        article_count:
          type: integer
          default: 0
        photo_count:
          type: integer
          default: 0
        video_count:
          type: integer
          default: 0
        graphic_count:
          type: integer
          default: 0
        latest_articles:
          items:
            $ref: '#/components/schemas/YonhapIssueArticleLink'
          type: array
          default: []
      type: object
      required:
        - id
        - issue_title
        - web_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YonhapIssueCategory:
      type: string
      enum:
        - all
        - politics
        - nk
        - economy
        - it
        - society
        - international
        - sports-entertainment
    YonhapIssueArticleLink:
      properties:
        '@type':
          type: string
          default: YonhapIssueArticleLink
        id:
          type: string
        article_title:
          type: string
        web_url:
          type: string
      type: object
      required:
        - id
        - article_title
        - web_url
    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

````