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

> Search and browse the Ars Technica archive back to 1998. Combine a full-text query with section, topic-tag, editorial-series and author filters, publish and update date ranges and the sort order. Each result carries headline, dek, publish and update timestamps, the credited writer, the resolved taxonomy terms and the featured image.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/news-publishing.json post /api/arstechnica/articles/search
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/search:
    post:
      tags:
        - /arstechnica
      summary: /arstechnica/articles/search
      description: >-
        Search and browse the Ars Technica archive back to 1998. Combine a
        full-text query with section, topic-tag, editorial-series and author
        filters, publish and update date ranges and the sort order. Each result
        carries headline, dek, publish and update timestamps, the credited
        writer, the resolved taxonomy terms and the featured image.


        **Price:** 1 credit
      operationId: __api_arstechnica_articles_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ArstechnicaArticlesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ArstechnicaArticleCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ArstechnicaArticlesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        articles:
          anyOf:
            - items:
                type: string
              type: array
              maxItems: 500
            - type: 'null'
        articles_exclude:
          anyOf:
            - items:
                type: string
              type: array
              maxItems: 500
            - type: 'null'
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        keyword_fields:
          anyOf:
            - items:
                $ref: '#/components/schemas/ArstechnicaKeywordField'
              type: array
            - type: 'null'
        categories:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        categories_exclude:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        tags:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        tags_exclude:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        series:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        series_exclude:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        feature_series:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        feature_series_exclude:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        authors:
          anyOf:
            - items:
                type: string
              type: array
              maxItems: 500
            - type: 'null'
        authors_exclude:
          anyOf:
            - items:
                type: string
              type: array
              maxItems: 500
            - type: 'null'
        published_after:
          anyOf:
            - type: string
            - type: 'null'
        published_before:
          anyOf:
            - type: string
            - type: 'null'
        updated_after:
          anyOf:
            - type: string
            - type: 'null'
        updated_before:
          anyOf:
            - type: string
            - type: 'null'
        taxonomy_relation:
          anyOf:
            - $ref: '#/components/schemas/ArstechnicaTaxonomyRelation'
            - type: 'null'
        sort:
          anyOf:
            - $ref: '#/components/schemas/ArstechnicaArticleSort'
            - type: 'null'
        order:
          anyOf:
            - $ref: '#/components/schemas/ArstechnicaOrder'
            - type: 'null'
        skip:
          type: integer
          minimum: 0
          default: 0
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    ArstechnicaArticleCard:
      properties:
        '@type':
          type: string
          default: ArstechnicaArticleCard
        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: []
      type: object
      required:
        - id
        - article_title
        - alias
        - web_url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ArstechnicaKeywordField:
      type: string
      enum:
        - post_title
        - post_content
        - post_excerpt
    ArstechnicaTaxonomyRelation:
      type: string
      enum:
        - AND
        - OR
    ArstechnicaArticleSort:
      type: string
      enum:
        - date
        - modified
        - relevance
        - title
        - slug
        - id
        - author
    ArstechnicaOrder:
      type: string
      enum:
        - asc
        - desc
    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
    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

````