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

> Read a France 24 RSS feed: the newest stories of the whole edition, of one news section or of one topic tag, with headline, summary, publication time, section, lead image and the photo credit France 24 attaches to it. A programme's podcast feed is served on the same endpoint and adds the episode's media file, its running time and its keywords. The cheapest way to see what France 24 published in the last few hours, in any of the four language editions.

**Price:** 1 credit

**⚠️ Common errors:** 412: France 24 publishes no feed at this path, 422: Not a France 24 section path, tag path, podcast path or feed URL



## OpenAPI

````yaml /openapi/news-publishing.json post /api/france24/feeds
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/feeds:
    post:
      tags:
        - /france24
      summary: /france24/feeds
      description: >-
        Read a France 24 RSS feed: the newest stories of the whole edition, of
        one news section or of one topic tag, with headline, summary,
        publication time, section, lead image and the photo credit France 24
        attaches to it. A programme's podcast feed is served on the same
        endpoint and adds the episode's media file, its running time and its
        keywords. The cheapest way to see what France 24 published in the last
        few hours, in any of the four language editions.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: France 24 publishes no feed at this path,
        422: Not a France 24 section path, tag path, podcast path or feed URL
      operationId: __api_france24_feeds_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/France24FeedsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/France24FeedItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    France24FeedsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        feed:
          type: string
          default: ''
        count:
          type: integer
          minimum: 1
        lang:
          $ref: '#/components/schemas/France24Language'
          default: en
      type: object
      required:
        - count
    France24FeedItem:
      properties:
        '@type':
          type: string
          default: France24FeedItem
        id:
          anyOf:
            - type: string
            - type: 'null'
        article_title:
          type: string
        web_url:
          type: string
        alias:
          type: string
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        language:
          type: string
        section:
          anyOf:
            - type: string
            - type: 'null'
        creator:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        image_credit:
          anyOf:
            - type: string
            - type: 'null'
        author:
          anyOf:
            - type: string
            - type: 'null'
        subtitle:
          anyOf:
            - type: string
            - type: 'null'
        keywords:
          items:
            type: string
          type: array
          default: []
        duration:
          anyOf:
            - type: integer
            - type: 'null'
        episode_type:
          anyOf:
            - type: string
            - type: 'null'
        is_explicit:
          anyOf:
            - type: boolean
            - type: 'null'
        media_url:
          anyOf:
            - type: string
            - type: 'null'
        media_type:
          anyOf:
            - type: string
            - type: 'null'
      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

````