> ## 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/programs/search

> List every Deutsche Welle show and podcast of one language edition, TV and radio, with id, name, description, artwork and browse url.

**Price:** 1 credit

**⚠️ Common errors:** 412: This DW language edition publishes no programme catalogue



## OpenAPI

````yaml /openapi/news-publishing.json post /api/dw/programs/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/dw/programs/search:
    post:
      tags:
        - /dw
      summary: /dw/programs/search
      description: >-
        List every Deutsche Welle show and podcast of one language edition, TV
        and radio, with id, name, description, artwork and browse url.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: This DW language edition publishes no
        programme catalogue
      operationId: __api_dw_programs_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DwProgramsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DwProgramIndexEntry'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DwProgramsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        count:
          type: integer
          minimum: 1
        language:
          $ref: '#/components/schemas/DwLanguage'
          default: en
        kind:
          anyOf:
            - items:
                $ref: '#/components/schemas/DwProgramKind'
              type: array
            - type: 'null'
      type: object
      required:
        - count
    DwProgramIndexEntry:
      properties:
        '@type':
          type: string
          default: DwProgramIndexEntry
        id:
          type: integer
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        kind:
          type: string
        teaser:
          anyOf:
            - type: string
            - type: 'null'
        short_teaser:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - $ref: '#/components/schemas/DwImage'
            - type: 'null'
      type: object
      required:
        - id
        - name
        - kind
    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
    DwProgramKind:
      type: string
      enum:
        - video
        - audio
    DwImage:
      properties:
        '@type':
          type: string
          default: DwImage
        id:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        credit:
          anyOf:
            - type: string
            - type: 'null'
        image_type:
          anyOf:
            - type: string
            - type: 'null'
      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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````