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

# /iso/standards

> Get one ISO standard by its catalogue number. Returns the public catalogue record: reference, title, scope abstract, publication status and harmonised stage code, edition and edition year, publication date, page count, list price in Swiss francs with the per-language and per-format purchase options, the owning technical committee, the ICS classification codes, the standards this one replaces or is replaced by, its amendments and corrigenda, the dated stage history of the project, and the UN Sustainable Development Goals ISO maps it to.

**Price:** 5 credits

**⚠️ Common errors:** 412: No ISO standard carries that catalogue number, 422: The input is not a catalogue number or a www.iso.org/standard/ URL



## OpenAPI

````yaml /openapi/gov-public-sector.json post /api/iso/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/iso/standards:
    post:
      tags:
        - /iso
      summary: /iso/standards
      description: >-
        Get one ISO standard by its catalogue number. Returns the public
        catalogue record: reference, title, scope abstract, publication status
        and harmonised stage code, edition and edition year, publication date,
        page count, list price in Swiss francs with the per-language and
        per-format purchase options, the owning technical committee, the ICS
        classification codes, the standards this one replaces or is replaced by,
        its amendments and corrigenda, the dated stage history of the project,
        and the UN Sustainable Development Goals ISO maps it to.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: No ISO standard carries that catalogue
        number, 422: The input is not a catalogue number or a
        www.iso.org/standard/ URL
      operationId: __api_iso_standards_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IsoStandardsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IsoStandard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IsoStandardsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        standard:
          type: string
          minLength: 1
      type: object
      required:
        - standard
    IsoStandard:
      properties:
        '@type':
          type: string
          default: IsoStandard
        id:
          type: string
        reference:
          anyOf:
            - type: string
            - type: 'null'
        standard_title:
          anyOf:
            - type: string
            - type: 'null'
        abstract:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        stage:
          anyOf:
            - type: string
            - type: 'null'
        stage_title:
          anyOf:
            - type: string
            - type: 'null'
        edition:
          anyOf:
            - type: string
            - type: 'null'
        edition_year:
          anyOf:
            - type: integer
            - type: 'null'
        publication_date:
          anyOf:
            - type: string
            - type: 'null'
        page_count:
          anyOf:
            - type: integer
            - type: 'null'
        price:
          anyOf:
            - $ref: '#/components/schemas/IsoPrice'
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        purchase_options:
          items:
            $ref: '#/components/schemas/IsoLanguageFormat'
          type: array
          default: []
        committee:
          anyOf:
            - $ref: '#/components/schemas/IsoCommitteeReference'
            - type: 'null'
        ics:
          items:
            $ref: '#/components/schemas/IsoIcsReference'
          type: array
          default: []
        related_standards:
          items:
            $ref: '#/components/schemas/IsoRelatedStandard'
          type: array
          default: []
        amendments:
          items:
            $ref: '#/components/schemas/IsoAmendment'
          type: array
          default: []
        stage_history:
          items:
            $ref: '#/components/schemas/IsoStageEvent'
          type: array
          default: []
        sustainable_development_goals:
          items:
            $ref: '#/components/schemas/IsoSustainableDevelopmentGoal'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IsoPrice:
      properties:
        '@type':
          type: string
          default: IsoPrice
        amount:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IsoLanguageFormat:
      properties:
        '@type':
          type: string
          default: IsoLanguageFormat
        language:
          anyOf:
            - type: string
            - type: 'null'
        language_name:
          anyOf:
            - type: string
            - type: 'null'
        purchase_format:
          anyOf:
            - type: string
            - type: 'null'
        format_code:
          anyOf:
            - type: string
            - type: 'null'
        amount:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    IsoCommitteeReference:
      properties:
        '@type':
          type: string
          default: IsoCommitteeReference
        id:
          anyOf:
            - type: string
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
        committee_title:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IsoIcsReference:
      properties:
        '@type':
          type: string
          default: IsoIcsReference
        code:
          anyOf:
            - type: string
            - type: 'null'
        code_title:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IsoRelatedStandard:
      properties:
        '@type':
          type: string
          default: IsoRelatedStandard
        id:
          anyOf:
            - type: string
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
        relation:
          anyOf:
            - type: string
            - type: 'null'
        stage:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IsoAmendment:
      properties:
        '@type':
          type: string
          default: IsoAmendment
        id:
          anyOf:
            - type: string
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
        label:
          anyOf:
            - type: string
            - type: 'null'
        amendment_title:
          anyOf:
            - type: string
            - type: 'null'
        edition:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IsoStageEvent:
      properties:
        '@type':
          type: string
          default: IsoStageEvent
        code:
          anyOf:
            - type: string
            - type: 'null'
        stage_title:
          anyOf:
            - type: string
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IsoSustainableDevelopmentGoal:
      properties:
        '@type':
          type: string
          default: IsoSustainableDevelopmentGoal
        number:
          anyOf:
            - type: integer
            - type: 'null'
        goal_title:
          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

````