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

> Get one SAE International standard by document number or standards URL. Returns the catalogue record — title, abstract, rationale, issuing committee, industry sectors, topic and taxonomy classification, revision status and origin date — together with the commerce record: DOI, page count, publication date, list and member price per purchasable format in US dollars, the ready-made Chicago citation, the figure and dataset assets published alongside the document, the complete revision ladder with dates and formats, and the sister-platform URLs the same document is served from.

**Price:** 1 credit

**⚠️ Common errors:** 412: No SAE standard carries that document number, 422: The input is not a document number or a www.sae.org/standards/ URL



## OpenAPI

````yaml /openapi/gov-public-sector.json post /api/sae/standards
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:
    post:
      tags:
        - /sae
      summary: /sae/standards
      description: >-
        Get one SAE International standard by document number or standards URL.
        Returns the catalogue record — title, abstract, rationale, issuing
        committee, industry sectors, topic and taxonomy classification, revision
        status and origin date — together with the commerce record: DOI, page
        count, publication date, list and member price per purchasable format in
        US dollars, the ready-made Chicago citation, the figure and dataset
        assets published alongside the document, the complete revision ladder
        with dates and formats, and the sister-platform URLs the same document
        is served from.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No SAE standard carries that document number,
        422: The input is not a document number or a www.sae.org/standards/ URL
      operationId: __api_sae_standards_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SaeStandardsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SaeStandard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SaeStandardsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        standard:
          type: string
          minLength: 1
      type: object
      required:
        - standard
    SaeStandard:
      properties:
        '@type':
          type: string
          default: SaeStandard
        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'
        doi:
          anyOf:
            - type: string
            - type: 'null'
        doi_issue_number:
          anyOf:
            - type: string
            - type: 'null'
        rationale:
          anyOf:
            - type: string
            - type: 'null'
        citation:
          anyOf:
            - type: string
            - type: 'null'
        page_count:
          anyOf:
            - type: integer
            - type: 'null'
        publication_date:
          anyOf:
            - type: string
            - type: 'null'
        product_status:
          anyOf:
            - type: string
            - type: 'null'
        extended_code:
          anyOf:
            - type: string
            - type: 'null'
        committee_code:
          anyOf:
            - type: string
            - type: 'null'
        content_type:
          anyOf:
            - type: string
            - type: 'null'
        content_root_type:
          anyOf:
            - type: string
            - type: 'null'
        official_content_type:
          anyOf:
            - type: string
            - type: 'null'
        language_code:
          anyOf:
            - type: string
            - type: 'null'
        canonical_url:
          anyOf:
            - type: string
            - type: 'null'
        source_system:
          anyOf:
            - type: string
            - type: 'null'
        is_sellable:
          anyOf:
            - type: boolean
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
        prices:
          items:
            $ref: '#/components/schemas/SaePrice'
          type: array
          default: []
        revisions:
          items:
            $ref: '#/components/schemas/SaeStandardCard'
          type: array
          default: []
        revision_history:
          items:
            $ref: '#/components/schemas/SaeRevision'
          type: array
          default: []
        documents:
          items:
            $ref: '#/components/schemas/SaeDocumentAsset'
          type: array
          default: []
        publishers:
          items:
            $ref: '#/components/schemas/SaePublisher'
          type: array
          default: []
        platform_urls:
          items:
            $ref: '#/components/schemas/SaePlatformUrl'
          type: array
          default: []
      type: object
      required:
        - product_code
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SaePrice:
      properties:
        '@type':
          type: string
          default: SaePrice
        sku:
          anyOf:
            - type: string
            - type: 'null'
        purchase_format:
          anyOf:
            - type: string
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
        member_amount:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    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
    SaeRevision:
      properties:
        '@type':
          type: string
          default: SaeRevision
        product_code:
          anyOf:
            - type: string
            - type: 'null'
        seo_uri:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        publication_date:
          anyOf:
            - type: string
            - type: 'null'
        revision_status:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        available_formats:
          items:
            type: string
          type: array
          default: []
      type: object
    SaeDocumentAsset:
      properties:
        '@type':
          type: string
          default: SaeDocumentAsset
        asset_id:
          anyOf:
            - type: string
            - type: 'null'
        file_name:
          anyOf:
            - type: string
            - type: 'null'
        asset_title:
          anyOf:
            - type: string
            - type: 'null'
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
        search_type:
          anyOf:
            - type: string
            - type: 'null'
        page_count:
          anyOf:
            - type: integer
            - type: 'null'
        size:
          anyOf:
            - type: integer
            - type: 'null'
        file_date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SaePublisher:
      properties:
        '@type':
          type: string
          default: SaePublisher
        name:
          anyOf:
            - type: string
            - type: 'null'
        publisher_id:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SaePlatformUrl:
      properties:
        '@type':
          type: string
          default: SaePlatformUrl
        platform:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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

````