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

# /sae/standards/search

> Search the SAE International standards catalogue — the aerospace AS, AMS, ARP and AIR series and the ground-vehicle J series. Narrows by free text, industry sector, revision status, document class, editorial topic, issuing committee, subject taxonomy, offered format, exact or root document number and origin date range, and orders by relevance, document number, title or origin date. Each result carries title, abstract, committee, industries, topics, the six-level taxonomy, revision status and the superseded revisions of the same document as full records.

**Price:** 10 credits per 100 results

**⚠️ Common errors:** 412: No SAE standard matched the filter combination, 422: A date is malformed or published_from is later than published_to



## OpenAPI

````yaml /openapi/gov-public-sector.json post /api/sae/standards/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/sae/standards/search:
    post:
      tags:
        - /sae
      summary: /sae/standards/search
      description: >-
        Search the SAE International standards catalogue — the aerospace AS,
        AMS, ARP and AIR series and the ground-vehicle J series. Narrows by free
        text, industry sector, revision status, document class, editorial topic,
        issuing committee, subject taxonomy, offered format, exact or root
        document number and origin date range, and orders by relevance, document
        number, title or origin date. Each result carries title, abstract,
        committee, industries, topics, the six-level taxonomy, revision status
        and the superseded revisions of the same document as full records.


        **Price:** 10 credits per 100 results


        **⚠️ Common errors:** 412: No SAE standard matched the filter
        combination, 422: A date is malformed or published_from is later than
        published_to
      operationId: __api_sae_standards_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SaeStandardsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SaeStandardCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SaeStandardsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        industries:
          anyOf:
            - items:
                $ref: '#/components/schemas/SaeIndustry'
              type: array
            - type: 'null'
        revision_status:
          anyOf:
            - $ref: '#/components/schemas/SaeRevisionStatus'
            - type: 'null'
        sub_groups:
          anyOf:
            - items:
                $ref: '#/components/schemas/SaeSubGroup'
              type: array
            - type: 'null'
        topics:
          anyOf:
            - items:
                $ref: '#/components/schemas/SaeTopic'
              type: array
            - type: 'null'
        committees:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        taxonomy:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        full_text_formats:
          anyOf:
            - items:
                $ref: '#/components/schemas/SaeFullTextFormat'
              type: array
            - type: 'null'
        product_codes:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        root_product_codes:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        published_from:
          anyOf:
            - type: string
            - type: 'null'
        published_to:
          anyOf:
            - type: string
            - type: 'null'
        sort:
          $ref: '#/components/schemas/SaeSort'
          default: relevance
        count:
          type: integer
          maximum: 1000
          minimum: 1
      type: object
      required:
        - count
    SaeStandardCard:
      properties:
        '@type':
          type: string
          default: SaeStandardCard
        product_code:
          type: string
        root_product_code:
          anyOf:
            - type: string
            - type: 'null'
        publication_id:
          anyOf:
            - type: string
            - type: 'null'
        content_id:
          anyOf:
            - type: string
            - type: 'null'
        document_title:
          anyOf:
            - type: string
            - type: 'null'
        abstract:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        seo_uri:
          anyOf:
            - type: string
            - type: 'null'
        committees:
          items:
            type: string
          type: array
          default: []
        industries:
          items:
            type: string
          type: array
          default: []
        topics:
          items:
            type: string
          type: array
          default: []
        taxonomy:
          items:
            type: string
          type: array
          default: []
        taxonomy_level_1:
          items:
            type: string
          type: array
          default: []
        taxonomy_level_2:
          items:
            type: string
          type: array
          default: []
        taxonomy_level_3:
          items:
            type: string
          type: array
          default: []
        taxonomy_level_4:
          items:
            type: string
          type: array
          default: []
        taxonomy_level_5:
          items:
            type: string
          type: array
          default: []
        taxonomy_level_6:
          items:
            type: string
          type: array
          default: []
        revision_status:
          anyOf:
            - type: string
            - type: 'null'
        origin_date:
          anyOf:
            - type: string
            - type: 'null'
        document_group:
          anyOf:
            - type: string
            - type: 'null'
        document_sub_group:
          anyOf:
            - type: string
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        full_text_formats:
          items:
            type: string
          type: array
          default: []
        is_featured:
          anyOf:
            - type: boolean
            - type: 'null'
        revisions:
          items:
            $ref: '#/components/schemas/SaeStandardCard'
          type: array
          default: []
      type: object
      required:
        - product_code
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SaeIndustry:
      type: string
      enum:
        - Aerospace
        - Automotive
        - Commercial Vehicle
        - Govt/Defense
    SaeRevisionStatus:
      type: string
      enum:
        - Current
        - Historical
    SaeSubGroup:
      type: string
      enum:
        - Technical Standard
        - Material Specification
        - Recommended Practice
        - Information Report
        - Supplement
        - Specification
    SaeTopic:
      type: string
      enum:
        - Automated and Autonomous Systems
        - Connectivity and Software
        - Digital Transformation
        - Electrical Systems and Electronics
        - Materials and Manufacturing
        - Military and Defense
        - Power and Propulsion
        - Quality, Testing and Safety
        - Sustainability
        - Vehicle Systems and Performance
    SaeFullTextFormat:
      type: string
      enum:
        - PDF
        - HTML
        - Excel
        - print
    SaeSort:
      type: string
      enum:
        - relevance
        - product_code_asc
        - product_code_desc
        - origin_date_asc
        - origin_date_desc
        - title_asc
        - title_desc
    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

````