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

# /rfi/podcasts

> Get one RFI radio programme by its slug: the programme title, the standfirst describing the format and broadcast slot, its cover art, the presenters RFI credits on the programme page, the RFI content id, the programme's editorial genre and current season, how many episodes the archive holds, the address of its podcast feed, and the newest episode's playable audio. Available in the sixteen editions that publish a programme catalogue.

**Price:** 10 credits

**⚠️ Common errors:** 412: RFI publishes no programme page at this slug in this language edition, 422: Not an RFI programme slug or programme URL, or an edition with no programme catalogue



## OpenAPI

````yaml /openapi/news-publishing.json post /api/rfi/podcasts
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/rfi/podcasts:
    post:
      tags:
        - /rfi
      summary: /rfi/podcasts
      description: >-
        Get one RFI radio programme by its slug: the programme title, the
        standfirst describing the format and broadcast slot, its cover art, the
        presenters RFI credits on the programme page, the RFI content id, the
        programme's editorial genre and current season, how many episodes the
        archive holds, the address of its podcast feed, and the newest episode's
        playable audio. Available in the sixteen editions that publish a
        programme catalogue.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: RFI publishes no programme page at this slug
        in this language edition, 422: Not an RFI programme slug or programme
        URL, or an edition with no programme catalogue
      operationId: __api_rfi_podcasts_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RfiPodcastsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RfiProgram'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RfiPodcastsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        podcast:
          type: string
          minLength: 1
        lang:
          $ref: '#/components/schemas/RfiLanguage'
          default: en
      type: object
      required:
        - podcast
    RfiProgram:
      properties:
        '@type':
          type: string
          default: RfiProgram
        id:
          anyOf:
            - type: string
            - type: 'null'
        program_title:
          type: string
        web_url:
          type: string
        alias:
          type: string
        language:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        hosts:
          items:
            $ref: '#/components/schemas/RfiAuthor'
          type: array
          default: []
        feed_url:
          anyOf:
            - type: string
            - type: 'null'
        genre:
          anyOf:
            - type: string
            - type: 'null'
        season:
          anyOf:
            - type: string
            - type: 'null'
        episode_count:
          anyOf:
            - type: integer
            - type: 'null'
        first_published_at:
          anyOf:
            - type: integer
            - type: 'null'
        latest_audio:
          anyOf:
            - $ref: '#/components/schemas/RfiAudio'
            - type: 'null'
      type: object
      required:
        - program_title
        - web_url
        - alias
        - language
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RfiLanguage:
      type: string
      enum:
        - fr
        - en
        - es
        - pt
        - br
        - cn
        - tw
        - vi
        - km
        - ro
        - sw
        - ha
        - fa
        - ru
        - ff
        - uk
        - ma
    RfiAuthor:
      properties:
        '@type':
          type: string
          default: RfiAuthor
        name:
          type: string
        role:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    RfiAudio:
      properties:
        '@type':
          type: string
          default: RfiAudio
        id:
          anyOf:
            - type: string
            - type: 'null'
        audio_url:
          type: string
        duration:
          anyOf:
            - type: integer
            - type: 'null'
        audio_title:
          anyOf:
            - type: string
            - type: 'null'
        content_id:
          anyOf:
            - type: string
            - type: 'null'
        content_type:
          anyOf:
            - type: string
            - type: 'null'
        program_id:
          anyOf:
            - type: string
            - type: 'null'
        program_title:
          anyOf:
            - type: string
            - type: 'null'
        program_url:
          anyOf:
            - type: string
            - type: 'null'
        program_genre:
          anyOf:
            - type: string
            - type: 'null'
        season:
          anyOf:
            - type: string
            - type: 'null'
        season_episode:
          anyOf:
            - type: string
            - type: 'null'
        episode_id:
          anyOf:
            - type: string
            - type: 'null'
        episode_title:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        published_label:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - audio_url
    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

````