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

> Get one France 24 TV show by its slug: the programme title, its standfirst describing the format and broadcast slot, its cover image, the presenters France 24 credits on the programme page with their profile links and portraits, the France 24 content id of the programme and the address of the show's own RSS feed. Works in all four language editions.

**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
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:
    post:
      tags:
        - /france24
      summary: /france24/shows
      description: >-
        Get one France 24 TV show by its slug: the programme title, its
        standfirst describing the format and broadcast slot, its cover image,
        the presenters France 24 credits on the programme page with their
        profile links and portraits, the France 24 content id of the programme
        and the address of the show's own RSS feed. Works in all four language
        editions.


        **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_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/France24ShowsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/France24Program'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    France24ShowsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        show:
          type: string
          minLength: 1
        lang:
          $ref: '#/components/schemas/France24Language'
          default: en
      type: object
      required:
        - show
    France24Program:
      properties:
        '@type':
          type: string
          default: France24Program
        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/France24Author'
          type: array
          default: []
        feed_url:
          anyOf:
            - type: string
            - type: 'null'
        first_published_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - program_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
    France24Author:
      properties:
        '@type':
          type: string
          default: France24Author
        name:
          type: string
        role:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          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

````