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

> Get one France 24 story by its URL: headline, standfirst, body text, publication and update times, section breadcrumb, keywords and topic tags, bylines with the role France 24 credits each contributor under, lead image with its caption and photo credit, in-body images, embedded video with its duration and player URL, and the stories France 24 recommends alongside it. Works for news articles, wire copy, video pages, live blogs and TV-show episodes, in the French, English, Spanish and Arabic editions.

**Price:** 1 credit

**⚠️ Common errors:** 412: No France 24 story at this URL, or the URL is a listing page rather than a story, 422: Not a France 24 content URL



## OpenAPI

````yaml /openapi/news-publishing.json post /api/france24/articles
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/articles:
    post:
      tags:
        - /france24
      summary: /france24/articles
      description: >-
        Get one France 24 story by its URL: headline, standfirst, body text,
        publication and update times, section breadcrumb, keywords and topic
        tags, bylines with the role France 24 credits each contributor under,
        lead image with its caption and photo credit, in-body images, embedded
        video with its duration and player URL, and the stories France 24
        recommends alongside it. Works for news articles, wire copy, video
        pages, live blogs and TV-show episodes, in the French, English, Spanish
        and Arabic editions.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No France 24 story at this URL, or the URL is
        a listing page rather than a story, 422: Not a France 24 content URL
      operationId: __api_france24_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/France24ArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/France24Article'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    France24ArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        article:
          type: string
          minLength: 1
      type: object
      required:
        - article
    France24Article:
      properties:
        '@type':
          type: string
          default: France24Article
        id:
          anyOf:
            - type: string
            - type: 'null'
        article_title:
          type: string
        text:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          type: string
        language:
          type: string
        content_type:
          anyOf:
            - type: string
            - type: 'null'
        is_liveblog:
          type: boolean
          default: false
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        section:
          anyOf:
            - type: string
            - type: 'null'
        sections:
          items:
            $ref: '#/components/schemas/France24Section'
          type: array
          default: []
        tags:
          items:
            $ref: '#/components/schemas/France24Tag'
          type: array
          default: []
        keywords:
          items:
            type: string
          type: array
          default: []
        authors:
          items:
            $ref: '#/components/schemas/France24Author'
          type: array
          default: []
        dateline:
          anyOf:
            - type: string
            - type: 'null'
        reading_time:
          anyOf:
            - type: integer
            - type: 'null'
        word_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        image_caption:
          anyOf:
            - type: string
            - type: 'null'
        image_credit:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            $ref: '#/components/schemas/France24Image'
          type: array
          default: []
        videos:
          items:
            $ref: '#/components/schemas/France24Video'
          type: array
          default: []
        related_articles:
          items:
            $ref: '#/components/schemas/France24RelatedArticle'
          type: array
          default: []
        is_free:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - article_title
        - web_url
        - language
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    France24Section:
      properties:
        '@type':
          type: string
          default: France24Section
        name:
          type: string
        web_url:
          type: string
      type: object
      required:
        - name
        - web_url
    France24Tag:
      properties:
        '@type':
          type: string
          default: France24Tag
        name:
          type: string
        alias:
          type: string
        web_url:
          type: string
      type: object
      required:
        - name
        - alias
        - web_url
    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
    France24Image:
      properties:
        '@type':
          type: string
          default: France24Image
        image:
          type: string
        caption:
          anyOf:
            - type: string
            - type: 'null'
        credit:
          anyOf:
            - type: string
            - type: 'null'
        alt:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - image
    France24Video:
      properties:
        '@type':
          type: string
          default: France24Video
        video_url:
          anyOf:
            - type: string
            - type: 'null'
        embed_url:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          anyOf:
            - type: integer
            - type: 'null'
        video_title:
          anyOf:
            - type: string
            - type: 'null'
        uploaded_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    France24RelatedArticle:
      properties:
        '@type':
          type: string
          default: France24RelatedArticle
        article_title:
          type: string
        web_url:
          type: string
      type: object
      required:
        - article_title
        - web_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

````