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

# /nhk/articles/search

> List NHK news articles from one feed: the nationwide latest stream, a nationwide genre stream, a regional bureau stream, a topic stream, a single day, or any NHK list id. Returns article cards with headline, teaser, last-update time, genre, region, topic tags, images and on-demand video links.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/news-publishing.json post /api/nhk/articles/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/nhk/articles/search:
    post:
      tags:
        - /nhk
      summary: /nhk/articles/search
      description: >-
        List NHK news articles from one feed: the nationwide latest stream, a
        nationwide genre stream, a regional bureau stream, a topic stream, a
        single day, or any NHK list id. Returns article cards with headline,
        teaser, last-update time, genre, region, topic tags, images and
        on-demand video links.


        **Price:** 1 credit
      operationId: __api_nhk_articles_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NhkArticlesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NhkArticleCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NhkArticlesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        genre:
          anyOf:
            - $ref: '#/components/schemas/NhkGenre'
            - type: 'null'
        area:
          anyOf:
            - $ref: '#/components/schemas/NhkArea'
            - type: 'null'
        topic:
          anyOf:
            - type: string
            - type: 'null'
        playlist:
          anyOf:
            - type: string
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        count:
          type: integer
          maximum: 2000
          minimum: 1
      type: object
      required:
        - count
    NhkArticleCard:
      properties:
        '@type':
          type: string
          default: NhkArticleCard
        id:
          type: string
        article_title:
          type: string
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        genres:
          items:
            type: string
          type: array
          default: []
        genre_id:
          anyOf:
            - type: string
            - type: 'null'
        genre_slug:
          anyOf:
            - type: string
            - type: 'null'
        area_id:
          anyOf:
            - type: string
            - type: 'null'
        playlist_id:
          anyOf:
            - type: string
            - type: 'null'
        playlist_name:
          anyOf:
            - type: string
            - type: 'null'
        topics:
          items:
            $ref: '#/components/schemas/NhkTopic'
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        videos:
          items:
            $ref: '#/components/schemas/NhkVideo'
          type: array
          default: []
      type: object
      required:
        - id
        - article_title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    NhkGenre:
      type: string
      enum:
        - society
        - politics
        - business
        - disaster
        - international
        - scienceculture
        - sports
        - life
    NhkArea:
      type: string
      enum:
        - '010'
        - '020'
        - '030'
        - '040'
        - '050'
        - '060'
        - '070'
        - '080'
        - '090'
        - '100'
        - '110'
        - '120'
        - '130'
        - '140'
        - '150'
        - '160'
        - '170'
        - '180'
        - '190'
        - '200'
        - '210'
        - '220'
        - '230'
        - '240'
        - '250'
        - '260'
        - '270'
        - '280'
        - '290'
        - '300'
        - '310'
        - '320'
        - '330'
        - '340'
        - '350'
        - '360'
        - '370'
        - '380'
        - '390'
        - '400'
        - '401'
        - '410'
        - '420'
        - '430'
        - '440'
        - '450'
        - '460'
        - '470'
    NhkTopic:
      properties:
        '@type':
          type: string
          default: NhkTopic
        id:
          type: string
        name:
          type: string
        is_displayed:
          type: boolean
          default: false
      type: object
      required:
        - id
        - name
    NhkVideo:
      properties:
        '@type':
          type: string
          default: NhkVideo
        video_title:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          anyOf:
            - type: number
            - type: 'null'
        embed_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        stream_type:
          anyOf:
            - type: string
            - type: 'null'
        environment_id:
          anyOf:
            - type: string
            - type: 'null'
        streams:
          items:
            $ref: '#/components/schemas/NhkVideoStream'
          type: array
          default: []
      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
    NhkVideoStream:
      properties:
        '@type':
          type: string
          default: NhkVideoStream
        name:
          anyOf:
            - type: string
            - type: 'null'
        stream_url:
          type: string
        formats:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - stream_url
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````