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

> Get a Yonhap News Agency reporter profile by id: name, desk bio, work email, portrait, subscriber count with gender and age-range breakdown, and the reporter's most recent dispatch.

**Price:** 1 credit

**⚠️ Common errors:** 412: Reporter not found: well-formed id with no profile behind it



## OpenAPI

````yaml /openapi/news-publishing.json post /api/yonhap/authors
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/authors:
    post:
      tags:
        - /yonhap
      summary: /yonhap/authors
      description: >-
        Get a Yonhap News Agency reporter profile by id: name, desk bio, work
        email, portrait, subscriber count with gender and age-range breakdown,
        and the reporter's most recent dispatch.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Reporter not found: well-formed id with no
        profile behind it
      operationId: __api_yonhap_authors_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YonhapAuthorsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YonhapAuthor'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YonhapAuthorsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        author:
          type: string
          minLength: 1
      type: object
      required:
        - author
    YonhapAuthor:
      properties:
        '@type':
          type: string
          default: YonhapAuthor
        id:
          type: string
        name:
          type: string
        language:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          type: string
        is_active:
          type: boolean
          default: false
        subscriber_count:
          type: integer
          default: 0
        subscriber_genders:
          items:
            $ref: '#/components/schemas/YonhapAuthorSubscriberSegment'
          type: array
          default: []
        subscriber_age_ranges:
          items:
            $ref: '#/components/schemas/YonhapAuthorSubscriberSegment'
          type: array
          default: []
        statistics_date:
          anyOf:
            - type: string
            - type: 'null'
        latest_article_id:
          anyOf:
            - type: string
            - type: 'null'
        latest_article_title:
          anyOf:
            - type: string
            - type: 'null'
        latest_published_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - name
        - profile_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YonhapAuthorSubscriberSegment:
      properties:
        '@type':
          type: string
          default: YonhapAuthorSubscriberSegment
        segment:
          type: string
        subscriber_count:
          type: integer
      type: object
      required:
        - segment
        - subscriber_count
    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

````