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

> Get a full Axios story by UUID or article URL: headline, SEO and social headlines, the Smart Brevity summary, the complete body as plain text and as HTML, separate first-publish, publish and update timestamps, word counts and the Go deeper reading estimate, every credited author, the topic, subtopic and tag taxonomies, the local or national audience the story was written for, and the lead image with its photo credit.

**Price:** 1 credit

**⚠️ Common errors:** 412: Story not found (well-formed but nonexistent UUID or article URL)



## OpenAPI

````yaml /openapi/news-publishing.json post /api/axios/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/articles:
    post:
      tags:
        - /axios
      summary: /axios/articles
      description: >-
        Get a full Axios story by UUID or article URL: headline, SEO and social
        headlines, the Smart Brevity summary, the complete body as plain text
        and as HTML, separate first-publish, publish and update timestamps, word
        counts and the Go deeper reading estimate, every credited author, the
        topic, subtopic and tag taxonomies, the local or national audience the
        story was written for, and the lead image with its photo credit.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Story not found (well-formed but nonexistent
        UUID or article URL)
      operationId: __api_axios_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AxiosArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AxiosArticle'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AxiosArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        article:
          type: string
          minLength: 1
      type: object
      required:
        - article
    AxiosArticle:
      properties:
        '@type':
          type: string
          default: AxiosArticle
        id:
          type: string
        article_title:
          type: string
        alias:
          type: string
        web_url:
          type: string
        seo_title:
          anyOf:
            - type: string
            - type: 'null'
        social_title:
          anyOf:
            - type: string
            - type: 'null'
        social_description:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        html:
          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'
        featured_at:
          anyOf:
            - type: integer
            - type: 'null'
        word_count:
          anyOf:
            - type: integer
            - type: 'null'
        read_more_word_count:
          anyOf:
            - type: integer
            - type: 'null'
        before_read_more_word_count:
          anyOf:
            - type: integer
            - type: 'null'
        keep_reading_minutes:
          anyOf:
            - type: integer
            - type: 'null'
        keep_reading_estimate:
          anyOf:
            - type: string
            - type: 'null'
        amp_url:
          anyOf:
            - type: string
            - type: 'null'
        is_breaking:
          anyOf:
            - type: boolean
            - type: 'null'
        is_featured:
          anyOf:
            - type: boolean
            - type: 'null'
        is_live:
          anyOf:
            - type: boolean
            - type: 'null'
        is_sponsored:
          anyOf:
            - type: boolean
            - type: 'null'
        is_evergreen:
          anyOf:
            - type: boolean
            - type: 'null'
        is_paywalled:
          anyOf:
            - type: boolean
            - type: 'null'
        include_on_site:
          anyOf:
            - type: boolean
            - type: 'null'
        include_in_latest_stories:
          anyOf:
            - type: boolean
            - type: 'null'
        homepage_unit_title:
          anyOf:
            - type: string
            - type: 'null'
        image_caption:
          anyOf:
            - type: string
            - type: 'null'
        byline_photo:
          anyOf:
            - type: string
            - type: 'null'
        byline_photo_retina:
          anyOf:
            - type: string
            - type: 'null'
        primary_embed:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - $ref: '#/components/schemas/AxiosImage'
            - type: 'null'
        social_image:
          anyOf:
            - $ref: '#/components/schemas/AxiosImage'
            - type: 'null'
        authors:
          items:
            $ref: '#/components/schemas/AxiosAuthor'
          type: array
          default: []
        topics:
          items:
            $ref: '#/components/schemas/AxiosTopic'
          type: array
          default: []
        subtopics:
          items:
            $ref: '#/components/schemas/AxiosArticleSubtopic'
          type: array
          default: []
        sections:
          items:
            $ref: '#/components/schemas/AxiosSection'
          type: array
          default: []
        tags:
          items:
            $ref: '#/components/schemas/AxiosTag'
          type: array
          default: []
        primary_tag:
          anyOf:
            - $ref: '#/components/schemas/AxiosTag'
            - type: 'null'
        audience:
          anyOf:
            - $ref: '#/components/schemas/AxiosAudience'
            - type: 'null'
        cross_promoted_to:
          items:
            $ref: '#/components/schemas/AxiosAudience'
          type: array
          default: []
      type: object
      required:
        - id
        - article_title
        - alias
        - web_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AxiosImage:
      properties:
        '@type':
          type: string
          default: AxiosImage
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        alt_text:
          anyOf:
            - type: string
            - type: 'null'
        credit:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        is_animated:
          anyOf:
            - type: boolean
            - type: 'null'
        original_filename:
          anyOf:
            - type: string
            - 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
    AxiosArticleSubtopic:
      properties:
        '@type':
          type: string
          default: AxiosArticleSubtopic
        id:
          type: string
        alias:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        topic_id:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - alias
    AxiosSection:
      properties:
        '@type':
          type: string
          default: AxiosSection
        id:
          type: string
        alias:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - alias
    AxiosTag:
      properties:
        '@type':
          type: string
          default: AxiosTag
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    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

````