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

# /mainichi/categories/articles

> List Mainichi Shimbun articles in one section, newest first. Sections come from both editions: English edition desks and Japanese mainichi.jp desks. Returns headline, url, teaser, publish time, thumbnail, story length in characters and, for the Japanese edition, whether the story is subscriber-only.

**Price:** 1 credit

**⚠️ Common errors:** 412: Section not found — the source does not serve that section



## OpenAPI

````yaml /openapi/news-publishing.json post /api/mainichi/categories/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/mainichi/categories/articles:
    post:
      tags:
        - /mainichi
      summary: /mainichi/categories/articles
      description: >-
        List Mainichi Shimbun articles in one section, newest first. Sections
        come from both editions: English edition desks and Japanese mainichi.jp
        desks. Returns headline, url, teaser, publish time, thumbnail, story
        length in characters and, for the Japanese edition, whether the story is
        subscriber-only.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Section not found — the source does not serve
        that section
      operationId: __api_mainichi_categories_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MainichiCategoriesArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MainichiArticleCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MainichiCategoriesArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        category:
          $ref: '#/components/schemas/MainichiCategory'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - category
        - count
    MainichiArticleCard:
      properties:
        '@type':
          type: string
          default: MainichiArticleCard
        id:
          type: string
        edition:
          $ref: '#/components/schemas/MainichiEdition'
        article_title:
          type: string
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        excerpt:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
        badges:
          items:
            type: string
          type: array
          default: []
        char_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_premium:
          type: boolean
          default: false
      type: object
      required:
        - id
        - edition
        - article_title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MainichiCategory:
      type: string
      enum:
        - english/latest
        - english/japan
        - english/japan/crime-accidents
        - english/japan/politics
        - english/japan/social-issues
        - english/japan/weather-disasters
        - english/japan/history-festivals
        - english/japan/education
        - english/japan/imperial-family
        - english/japan/polls
        - english/world
        - english/world/asia-oceania
        - english/world/usa-canada
        - english/world/europe
        - english/world/middle-east
        - english/world/latin-america
        - english/world/africa
        - english/business
        - english/business/corporate
        - english/business/economy
        - english/business/financial
        - english/business/agriculture-fisheries
        - english/sports
        - english/sports/baseball
        - english/sports/soccer
        - english/sports/sumo
        - english/sports/tennis
        - english/sports/golf
        - english/sports/rugby
        - english/sports/athletics
        - english/sports/winter-sports
        - english/sports/olympics-paralympics
        - english/science
        - english/science/technology
        - english/science/medical
        - english/science/environment
        - english/science/space
        - english/entertainment
        - english/entertainment/anime-manga
        - english/entertainment/showbiz
        - english/entertainment/culture
        - english/entertainment/amusement
        - english/entertainment/film
        - english/entertainment/music
        - english/entertainment/books
        - english/opinion
        - english/opinion/editorial
        - english/opinion/news-navigator
        - english/opinion/perspectives
        - english/lifestyle
        - english/lifestyle/animals
        - english/lifestyle/travel
        - english/lifestyle/health
        - english/lifestyle/food
        - english/lifestyle/fashion
        - english/obituaries
        - english/hibakusha
        - flash
        - seiji
        - senkyo
        - opinion-poll
        - diet-party
        - diplomacy-defense
        - policy
        - biz
        - enterprise
        - economy
        - stock
        - global
        - job
        - world
        - north-america
        - china-korea
        - asia-oceania
        - europe
        - middle-east
        - south-central-america
        - africa
        - un-organizations
        - shakai
        - incident
        - law
        - weather-report
        - diversity
        - technology
        - ecology
        - peace
        - koushitsu
        - fuhou
        - life
        - edu
        - medical
        - welfare
        - social-welfare
        - food
        - animals
        - travel
        - sports
        - high-school-baseball
        - professional-baseball
        - soccer
        - rugby
        - volleyball
        - figureskate
        - ekiden
        - sumo
        - athletics
        - culture
        - book
        - shogi
        - igo
        - movie
        - music
        - geinou
        - showbiz
        - manga-anime-game
        - arts
        - kabuki
        - editorial
        - yoroku
        - kishanome
        - wide
    MainichiEdition:
      type: string
      enum:
        - en
        - jp
    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

````