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

# /arstechnica/articles

> Get a full Ars Technica article by id, slug or URL: headline, the editorial kicker printed above it, the dek, the complete article body as plain text and as HTML, separate publish and update timestamps, the credited staff writer with bio, the section, topic-tag and editorial-series taxonomies, the number of forum comments the story has collected and the featured image with its photo credit.

**Price:** 1 credit

**⚠️ Common errors:** 412: Article not found (well-formed but nonexistent id, slug or URL)



## OpenAPI

````yaml /openapi/news-publishing.json post /api/arstechnica/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/arstechnica/articles:
    post:
      tags:
        - /arstechnica
      summary: /arstechnica/articles
      description: >-
        Get a full Ars Technica article by id, slug or URL: headline, the
        editorial kicker printed above it, the dek, the complete article body as
        plain text and as HTML, separate publish and update timestamps, the
        credited staff writer with bio, the section, topic-tag and
        editorial-series taxonomies, the number of forum comments the story has
        collected and the featured image with its photo credit.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Article not found (well-formed but
        nonexistent id, slug or URL)
      operationId: __api_arstechnica_articles_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ArstechnicaArticlesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ArstechnicaArticle'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ArstechnicaArticlesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        article:
          type: string
          minLength: 1
      type: object
      required:
        - article
    ArstechnicaArticle:
      properties:
        '@type':
          type: string
          default: ArstechnicaArticle
        id:
          type: integer
        article_title:
          type: string
        alias:
          type: string
        web_url:
          type: string
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        excerpt:
          anyOf:
            - type: string
            - type: 'null'
        post_format:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        image_id:
          anyOf:
            - type: integer
            - type: 'null'
        apple_news_url:
          anyOf:
            - type: string
            - type: 'null'
        wp_author_id:
          anyOf:
            - type: integer
            - type: 'null'
        author:
          anyOf:
            - $ref: '#/components/schemas/ArstechnicaArticleAuthor'
            - type: 'null'
        categories:
          items:
            $ref: '#/components/schemas/ArstechnicaTerm'
          type: array
          default: []
        tags:
          items:
            $ref: '#/components/schemas/ArstechnicaTerm'
          type: array
          default: []
        feature_series:
          items:
            $ref: '#/components/schemas/ArstechnicaTerm'
          type: array
          default: []
        series:
          items:
            $ref: '#/components/schemas/ArstechnicaTerm'
          type: array
          default: []
        kicker:
          anyOf:
            - type: string
            - type: 'null'
        comment_count:
          anyOf:
            - type: integer
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        html:
          anyOf:
            - type: string
            - type: 'null'
        featured_image:
          anyOf:
            - $ref: '#/components/schemas/ArstechnicaImage'
            - type: 'null'
      type: object
      required:
        - id
        - article_title
        - alias
        - web_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ArstechnicaArticleAuthor:
      properties:
        '@type':
          type: string
          default: ArstechnicaArticleAuthor
        id:
          type: integer
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        homepage_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    ArstechnicaTerm:
      properties:
        '@type':
          type: string
          default: ArstechnicaTerm
        id:
          type: integer
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        taxonomy:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        article_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - name
    ArstechnicaImage:
      properties:
        '@type':
          type: string
          default: ArstechnicaImage
        id:
          type: integer
        image:
          type: string
        image_title:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        alt:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        credit:
          anyOf:
            - type: string
            - type: 'null'
        copyright:
          anyOf:
            - type: string
            - type: 'null'
        embedded_title:
          anyOf:
            - type: string
            - type: 'null'
        embedded_caption:
          anyOf:
            - type: string
            - type: 'null'
        keywords:
          items:
            type: string
          type: array
          default: []
        camera:
          anyOf:
            - type: string
            - type: 'null'
        aperture:
          anyOf:
            - type: number
            - type: 'null'
        focal_length:
          anyOf:
            - type: number
            - type: 'null'
        iso:
          anyOf:
            - type: integer
            - type: 'null'
        shutter_speed:
          anyOf:
            - type: number
            - type: 'null'
        taken_at:
          anyOf:
            - type: integer
            - type: 'null'
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        file_size:
          anyOf:
            - type: integer
            - type: 'null'
        media_type:
          anyOf:
            - type: string
            - type: 'null'
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
        uploaded_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        post_id:
          anyOf:
            - type: integer
            - type: 'null'
        wp_author_id:
          anyOf:
            - type: integer
            - type: 'null'
        sizes:
          items:
            $ref: '#/components/schemas/ArstechnicaImageSize'
          type: array
          default: []
      type: object
      required:
        - id
        - image
    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
    ArstechnicaImageSize:
      properties:
        '@type':
          type: string
          default: ArstechnicaImageSize
        name:
          type: string
        image:
          type: string
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
        - image
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````