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

# /axios/topics/articles

> Browse published Axios stories filed under given topics, subtopics or audiences, walking the archive in publication order. Each story carries the headline, the Smart Brevity summary, publish and update timestamps, the Go deeper reading estimate, credited authors, the primary topic, the audience it belongs to and the lead image with its caption.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/news-publishing.json post /api/axios/topics/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/axios/topics/articles:
    post:
      tags:
        - /axios
      summary: /axios/topics/articles
      description: >-
        Browse published Axios stories filed under given topics, subtopics or
        audiences, walking the archive in publication order. Each story carries
        the headline, the Smart Brevity summary, publish and update timestamps,
        the Go deeper reading estimate, credited authors, the primary topic, the
        audience it belongs to and the lead image with its caption.


        **Price:** 1 credit
      operationId: __api_axios_topics_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AxiosTopicsArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AxiosArticleCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AxiosTopicsArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        topic_ids:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        subtopic_ids:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        audience_ids:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        order:
          $ref: '#/components/schemas/AxiosArticleOrder'
          default: newest_first
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    AxiosArticleCard:
      properties:
        '@type':
          type: string
          default: AxiosArticleCard
        id:
          type: string
        article_title:
          type: string
        web_url:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        first_published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        reading_time_minutes:
          anyOf:
            - type: integer
            - type: 'null'
        image_caption:
          anyOf:
            - type: string
            - type: 'null'
        rubrics:
          items:
            type: string
          type: array
          default: []
        is_sponsored:
          anyOf:
            - type: boolean
            - type: 'null'
        is_live:
          anyOf:
            - type: boolean
            - type: 'null'
        paywall_status:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - $ref: '#/components/schemas/AxiosCardImage'
            - type: 'null'
        authors:
          items:
            $ref: '#/components/schemas/AxiosAuthor'
          type: array
          default: []
        topic:
          anyOf:
            - $ref: '#/components/schemas/AxiosTopic'
            - type: 'null'
        audience:
          anyOf:
            - $ref: '#/components/schemas/AxiosAudience'
            - type: 'null'
      type: object
      required:
        - id
        - article_title
        - web_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AxiosArticleOrder:
      type: string
      enum:
        - newest_first
        - oldest_first
    AxiosCardImage:
      properties:
        '@type':
          type: string
          default: AxiosCardImage
        url:
          anyOf:
            - type: string
            - type: 'null'
        alt_text:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    AxiosAuthor:
      properties:
        '@type':
          type: string
          default: AxiosAuthor
        alias:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - alias
    AxiosTopic:
      properties:
        '@type':
          type: string
          default: AxiosTopic
        id:
          type: string
        alias:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        page_title:
          anyOf:
            - type: string
            - type: 'null'
        is_local:
          anyOf:
            - type: boolean
            - type: 'null'
        nav_position:
          anyOf:
            - type: integer
            - type: 'null'
        show_in_nav:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
        - alias
    AxiosAudience:
      properties:
        '@type':
          type: string
          default: AxiosAudience
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        audience_type:
          anyOf:
            - type: string
            - type: 'null'
        timezone:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    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

````