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

> List ISO technical committees, subcommittees and joint committees. Returns the reference, the English and French titles, the scope statement, the standing, the creation date, the secretariat body, the parent and child committees, and the national standards bodies taking part as participating or observing members together with the committee and organization liaisons. Filters by reference or id, by parent committee, by standing, to top-level committees only, or by a substring of the reference, title and scope.

**Price:** 20 credits

**⚠️ Common errors:** 412: No committee matched the filters



## OpenAPI

````yaml /openapi/gov-public-sector.json post /api/iso/committees
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/committees:
    post:
      tags:
        - /iso
      summary: /iso/committees
      description: >-
        List ISO technical committees, subcommittees and joint committees.
        Returns the reference, the English and French titles, the scope
        statement, the standing, the creation date, the secretariat body, the
        parent and child committees, and the national standards bodies taking
        part as participating or observing members together with the committee
        and organization liaisons. Filters by reference or id, by parent
        committee, by standing, to top-level committees only, or by a substring
        of the reference, title and scope.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: No committee matched the filters
      operationId: __api_iso_committees_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IsoCommitteesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IsoCommittee'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IsoCommitteesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        committees:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        parent:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        statuses:
          anyOf:
            - items:
                $ref: '#/components/schemas/IsoCommitteeStatus'
              type: array
            - type: 'null'
        top_level_only:
          type: boolean
          default: false
        query:
          anyOf:
            - type: string
              minLength: 1
            - type: 'null'
        count:
          type: integer
          maximum: 900
          minimum: 1
      type: object
      required:
        - count
    IsoCommittee:
      properties:
        '@type':
          type: string
          default: IsoCommittee
        id:
          type: integer
        reference:
          anyOf:
            - type: string
            - type: 'null'
        committee_title:
          anyOf:
            - type: string
            - type: 'null'
        title_fr:
          anyOf:
            - type: string
            - type: 'null'
        scope:
          anyOf:
            - type: string
            - type: 'null'
        scope_fr:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        creation_date:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        secretariat:
          anyOf:
            - $ref: '#/components/schemas/IsoMemberBody'
            - type: 'null'
        parent_id:
          anyOf:
            - type: integer
            - type: 'null'
        children_ids:
          items:
            type: integer
          type: array
          default: []
        participating_member_count:
          anyOf:
            - type: integer
            - type: 'null'
        observing_member_count:
          anyOf:
            - type: integer
            - type: 'null'
        participating_members:
          items:
            $ref: '#/components/schemas/IsoMemberBody'
          type: array
          default: []
        observing_members:
          items:
            $ref: '#/components/schemas/IsoMemberBody'
          type: array
          default: []
        committee_liaisons:
          items:
            $ref: '#/components/schemas/IsoCommitteeLiaison'
          type: array
          default: []
        organization_liaisons:
          items:
            $ref: '#/components/schemas/IsoOrganizationLiaison'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IsoCommitteeStatus:
      type: string
      enum:
        - Active
        - Suspended
    IsoMemberBody:
      properties:
        '@type':
          type: string
          default: IsoMemberBody
        id:
          anyOf:
            - type: integer
            - type: 'null'
        acronym:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IsoCommitteeLiaison:
      properties:
        '@type':
          type: string
          default: IsoCommitteeLiaison
        id:
          anyOf:
            - type: integer
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IsoOrganizationLiaison:
      properties:
        '@type':
          type: string
          default: IsoOrganizationLiaison
        id:
          anyOf:
            - type: integer
            - type: 'null'
        acronym:
          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

````