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

> Get one Corriere della Sera article by its URL: headline, standfirst, full body text, first publication and last update times, byline, section breadcrumb, lead image with caption, in-body images and, on live pages, the timeline of live updates with their own timestamps. Works for the national site and for the local editions on the regional subdomains.

**Price:** 1 credit

**⚠️ Common errors:** 412: No Corriere article at this URL, or the URL redirected to a different article, 422: Not a Corriere della Sera article URL



## OpenAPI

````yaml /openapi/news-publishing.json post /api/corriere/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/articles:
    post:
      tags:
        - /corriere
      summary: /corriere/articles
      description: >-
        Get one Corriere della Sera article by its URL: headline, standfirst,
        full body text, first publication and last update times, byline, section
        breadcrumb, lead image with caption, in-body images and, on live pages,
        the timeline of live updates with their own timestamps. Works for the
        national site and for the local editions on the regional subdomains.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No Corriere article at this URL, or the URL
        redirected to a different article, 422: Not a Corriere della Sera
        article URL
      operationId: __api_corriere_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CorriereArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CorriereArticle'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CorriereArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        article:
          type: string
          minLength: 1
      type: object
      required:
        - article
    CorriereArticle:
      properties:
        '@type':
          type: string
          default: CorriereArticle
        id:
          type: string
        article_title:
          type: string
        alternative_headline:
          anyOf:
            - type: string
            - type: 'null'
        text:
          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: []
        content_type:
          type: string
        edition:
          type: string
        byline:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        image_caption:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            $ref: '#/components/schemas/CorriereImage'
          type: array
          default: []
        video_duration:
          anyOf:
            - type: string
            - type: 'null'
        is_accessible_for_free:
          anyOf:
            - type: boolean
            - type: 'null'
        live_updates:
          items:
            $ref: '#/components/schemas/CorriereLiveUpdate'
          type: array
          default: []
      type: object
      required:
        - id
        - article_title
        - web_url
        - content_type
        - edition
    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
    CorriereLiveUpdate:
      properties:
        '@type':
          type: string
          default: CorriereLiveUpdate
        id:
          type: string
        update_title:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    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

````