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

# /dw/authors/articles

> List the stories Deutsche Welle credits to one journalist — articles, live blogs, videos, audio episodes and image galleries — with headline, teaser, lead image, publication date and kicker.

**Price:** 1 credit

**⚠️ Common errors:** 412: No DW author profile with this id in this language edition



## OpenAPI

````yaml /openapi/news-publishing.json post /api/dw/authors/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/dw/authors/articles:
    post:
      tags:
        - /dw
      summary: /dw/authors/articles
      description: >-
        List the stories Deutsche Welle credits to one journalist — articles,
        live blogs, videos, audio episodes and image galleries — with headline,
        teaser, lead image, publication date and kicker.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No DW author profile with this id in this
        language edition
      operationId: __api_dw_authors_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DwAuthorsArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DwContentRef'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DwAuthorsArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        author:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        language:
          $ref: '#/components/schemas/DwLanguage'
          default: en
      type: object
      required:
        - author
        - count
    DwContentRef:
      properties:
        '@type':
          type: string
          default: DwContentRef
        id:
          type: integer
        content_type:
          anyOf:
            - type: string
            - type: 'null'
        headline:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        subdomain:
          anyOf:
            - type: string
            - type: 'null'
        teaser:
          anyOf:
            - type: string
            - type: 'null'
        short_teaser:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        image_caption:
          anyOf:
            - type: string
            - type: 'null'
        content_at:
          anyOf:
            - type: integer
            - type: 'null'
        kicker:
          anyOf:
            - type: string
            - type: 'null'
        priority:
          anyOf:
            - type: string
            - type: 'null'
        genre:
          anyOf:
            - type: string
            - type: 'null'
        is_opinion:
          anyOf:
            - type: boolean
            - type: 'null'
        is_live_video:
          anyOf:
            - type: boolean
            - type: 'null'
        is_liveblog_active:
          anyOf:
            - type: boolean
            - type: 'null'
        duration:
          anyOf:
            - type: integer
            - type: 'null'
        formatted_duration:
          anyOf:
            - type: string
            - type: 'null'
        hls_url:
          anyOf:
            - type: string
            - type: 'null'
        mp3_url:
          anyOf:
            - type: string
            - type: 'null'
        poster_image:
          anyOf:
            - type: string
            - type: 'null'
        playback_format:
          anyOf:
            - type: string
            - type: 'null'
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        subtitles:
          items:
            $ref: '#/components/schemas/DwSubtitle'
          type: array
          default: []
        programs:
          items:
            $ref: '#/components/schemas/DwProgramRef'
          type: array
          default: []
        authors:
          items:
            $ref: '#/components/schemas/DwPersonRef'
          type: array
          default: []
      type: object
      required:
        - id
        - headline
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DwLanguage:
      type: string
      enum:
        - de
        - en
        - ar
        - es
        - ru
        - fr
        - uk
        - tr
        - fa-ir
        - fa-af
        - ps
        - ur
        - hi
        - bn
        - pt-br
        - pt-002
        - pl
        - ro
        - sr
        - bs
        - hr
        - mk
        - sq
        - bg
        - el
        - zh
        - zh-hant
        - id
        - sw
        - ha
        - am
    DwSubtitle:
      properties:
        '@type':
          type: string
          default: DwSubtitle
        language:
          anyOf:
            - type: string
            - type: 'null'
        language_code:
          anyOf:
            - type: string
            - type: 'null'
        subtitle_url:
          type: string
      type: object
      required:
        - subtitle_url
    DwProgramRef:
      properties:
        '@type':
          type: string
          default: DwProgramRef
        id:
          type: integer
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    DwPersonRef:
      properties:
        '@type':
          type: string
          default: DwPersonRef
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        role:
          anyOf:
            - type: string
            - type: 'null'
        short_profile:
          anyOf:
            - type: string
            - type: 'null'
        twitter_handle:
          anyOf:
            - type: string
            - type: 'null'
        note:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    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

````