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

> List every France 24 story filed under one topic tag, newest first. Tags are France 24's own controlled vocabulary of people, places, organisations and themes, and the tag archive reaches back years: popular tags carry over ten thousand stories. Each entry carries headline, publication time, section, editorial genre label, thumbnail and whether the story is a video.

**Price:** 1 credit

**⚠️ Common errors:** 412: France 24 has no tag page with this slug in this language edition, 422: Not a France 24 tag slug or tag URL



## OpenAPI

````yaml /openapi/news-publishing.json post /api/france24/tags/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/tags/articles:
    post:
      tags:
        - /france24
      summary: /france24/tags/articles
      description: >-
        List every France 24 story filed under one topic tag, newest first. Tags
        are France 24's own controlled vocabulary of people, places,
        organisations and themes, and the tag archive reaches back years:
        popular tags carry over ten thousand stories. Each entry carries
        headline, publication time, section, editorial genre label, thumbnail
        and whether the story is a video.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: France 24 has no tag page with this slug in
        this language edition, 422: Not a France 24 tag slug or tag URL
      operationId: __api_france24_tags_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/France24TagsArticlesPayload'
      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:
    France24TagsArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        tag:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        lang:
          $ref: '#/components/schemas/France24Language'
          default: en
      type: object
      required:
        - tag
        - 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

````