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

> Search the ISO catalogue of international standards by free text over the reference, the title and the scope abstract, optionally restricting the match to one of those fields and narrowing by the year the catalogue page was last maintained. Each result carries the reference, the title, the scope abstract and the catalogue number that /iso/standards takes.

**Price:** 20 credits per 1000 results

**⚠️ Common errors:** 412: No ISO standard matched the query, 422: updated_from_year is later than updated_to_year, or search_scope was set without a query



## OpenAPI

````yaml /openapi/gov-public-sector.json post /api/iso/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/iso/standards/search:
    post:
      tags:
        - /iso
      summary: /iso/standards/search
      description: >-
        Search the ISO catalogue of international standards by free text over
        the reference, the title and the scope abstract, optionally restricting
        the match to one of those fields and narrowing by the year the catalogue
        page was last maintained. Each result carries the reference, the title,
        the scope abstract and the catalogue number that /iso/standards takes.


        **Price:** 20 credits per 1000 results


        **⚠️ Common errors:** 412: No ISO standard matched the query, 422:
        updated_from_year is later than updated_to_year, or search_scope was set
        without a query
      operationId: __api_iso_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/IsoStandardsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IsoStandardCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IsoStandardsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        search_scope:
          $ref: '#/components/schemas/IsoSearchScope'
          default: all
        updated_from_year:
          anyOf:
            - type: integer
              maximum: 2100
              minimum: 1900
            - type: 'null'
        updated_to_year:
          anyOf:
            - type: integer
              maximum: 2100
              minimum: 1900
            - type: 'null'
        count:
          type: integer
          maximum: 1000
          minimum: 1
      type: object
      required:
        - count
    IsoStandardCard:
      properties:
        '@type':
          type: string
          default: IsoStandardCard
        id:
          anyOf:
            - type: string
            - type: 'null'
        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'
        record_status:
          anyOf:
            - type: string
            - type: 'null'
        page_updated:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IsoSearchScope:
      type: string
      enum:
        - all
        - reference
        - title
        - abstract
    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

````