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

# /corriere/sections/articles

> List Corriere della Sera articles published under one section, newest first, straight down the archive. Returns listing entries with headline, standfirst, first publication and last update times, byline, section path, topic tags, images with their photo credits and the paywall tier.

**Price:** 1 credit

**⚠️ Common errors:** 412: Corriere does not know this section, 422: Blank section, or count out of range



## OpenAPI

````yaml /openapi/news-publishing.json post /api/corriere/sections/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/corriere/sections/articles:
    post:
      tags:
        - /corriere
      summary: /corriere/sections/articles
      description: >-
        List Corriere della Sera articles published under one section, newest
        first, straight down the archive. Returns listing entries with headline,
        standfirst, first publication and last update times, byline, section
        path, topic tags, images with their photo credits and the paywall tier.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Corriere does not know this section, 422:
        Blank section, or count out of range
      operationId: __api_corriere_sections_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CorriereSectionsArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CorriereArticleCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CorriereSectionsArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        section:
          type: string
          minLength: 1
        count:
          type: integer
          maximum: 20000
          minimum: 1
      type: object
      required:
        - section
        - count
    CorriereArticleCard:
      properties:
        '@type':
          type: string
          default: CorriereArticleCard
        id:
          type: string
        article_title:
          type: string
        short_headline:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          type: string
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        section:
          anyOf:
            - type: string
            - type: 'null'
        sections:
          items:
            type: string
          type: array
          default: []
        label:
          anyOf:
            - type: string
            - type: 'null'
        content_type:
          anyOf:
            - type: string
            - type: 'null'
        provider:
          anyOf:
            - type: string
            - type: 'null'
        edition:
          anyOf:
            - type: string
            - type: 'null'
        byline:
          anyOf:
            - type: string
            - type: 'null'
        tags:
          items:
            type: string
          type: array
          default: []
        sub_types:
          items:
            type: string
          type: array
          default: []
        sub_section:
          anyOf:
            - type: string
            - type: 'null'
        paywall_category:
          anyOf:
            - type: integer
            - type: 'null'
        is_premium:
          type: boolean
          default: false
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            $ref: '#/components/schemas/CorriereImage'
          type: array
          default: []
      type: object
      required:
        - id
        - article_title
        - web_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CorriereImage:
      properties:
        '@type':
          type: string
          default: CorriereImage
        image:
          type: string
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        credit:
          anyOf:
            - type: string
            - type: 'null'
        preset:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        alt:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - image
    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

````