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

# /france24/shows/episodes

> List the episodes of one France 24 TV show, newest first, as deep into the archive as the requested count needs. Long-running programmes hold thousands of episodes going back years. Each entry carries the episode title, publication time, thumbnail, the programme it belongs to and its page URL.

**Price:** 1 credit

**⚠️ Common errors:** 412: France 24 publishes no programme page at this slug in this language edition, 422: Not a France 24 programme slug or programme URL



## OpenAPI

````yaml /openapi/news-publishing.json post /api/france24/shows/episodes
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/france24/shows/episodes:
    post:
      tags:
        - /france24
      summary: /france24/shows/episodes
      description: >-
        List the episodes of one France 24 TV show, newest first, as deep into
        the archive as the requested count needs. Long-running programmes hold
        thousands of episodes going back years. Each entry carries the episode
        title, publication time, thumbnail, the programme it belongs to and its
        page URL.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: France 24 publishes no programme page at this
        slug in this language edition, 422: Not a France 24 programme slug or
        programme URL
      operationId: __api_france24_shows_episodes_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/France24ShowsEpisodesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/France24ArticleCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    France24ShowsEpisodesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        show:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        lang:
          $ref: '#/components/schemas/France24Language'
          default: en
      type: object
      required:
        - show
        - count
    France24ArticleCard:
      properties:
        '@type':
          type: string
          default: France24ArticleCard
        article_title:
          type: string
        web_url:
          type: string
        alias:
          type: string
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        published_label:
          anyOf:
            - type: string
            - type: 'null'
        language:
          type: string
        section:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
        program:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_video:
          type: boolean
          default: false
      type: object
      required:
        - article_title
        - web_url
        - alias
        - language
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    France24Language:
      type: string
      enum:
        - fr
        - en
        - es
        - ar
    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

````