> ## Documentation Index
> Fetch the complete documentation index at: https://ngrok.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List

> List all SSH Certificate Authorities on this account




## OpenAPI

````yaml https://raw.githubusercontent.com/ngrok/ngrok-openapi/refs/heads/main/ngrok.yaml get /ssh_certificate_authorities
openapi: 3.0.0
info:
  title: ngrok OpenAPI
  version: 1.0.0
servers:
  - url: https://api.ngrok.com
security:
  - authentication: []
paths:
  /ssh_certificate_authorities:
    get:
      tags:
        - SSHCertificateAuthorities
      summary: List
      description: |
        List all SSH Certificate Authorities on this account
      operationId: SshCertificateAuthoritiesList
      parameters:
        - $ref: '#/components/parameters/ngrokVersion'
        - name: before_id
          description: >
            Expects a resource ID as its input. Returns earlier entries in the
            result set, sorted by ID.
          in: query
          required: false
          schema:
            type: string
        - name: limit
          description: >
            Constrains the number of results in the dataset. See the [API
            Overview](https://ngrok.com/docs/api/index#pagination) for details.
          in: query
          required: false
          schema:
            type: string
        - name: filter
          description: >
            A CEL expression to filter the list results. Supports logical and
            comparison operators to match on fields such as `id`, `metadata`,
            `created_at`, and more. See ngrok API Filtering for syntax and field
            details: https://ngrok.com/docs/api/api-filtering.
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: |
            List all SSH Certificate Authorities on this account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SSHCertificateAuthorityList'
components:
  parameters:
    ngrokVersion:
      name: ngrok-version
      in: header
      required: true
      schema:
        type: integer
        default: 2
  schemas:
    SSHCertificateAuthorityList:
      type: object
      properties:
        ssh_certificate_authorities:
          description: |
            the list of all certificate authorities on this account
          type: array
          items:
            $ref: '#/components/schemas/SSHCertificateAuthority'
        uri:
          description: |
            URI of the certificates authorities list API resource
          type: string
        next_page_uri:
          description: |
            URI of the next page, or null if there is no next page
          type: string
    SSHCertificateAuthority:
      type: object
      properties:
        id:
          description: |
            unique identifier for this SSH Certificate Authority
          type: string
        uri:
          description: |
            URI of the SSH Certificate Authority API resource
          type: string
        created_at:
          description: >
            timestamp when the SSH Certificate Authority API resource was
            created, RFC 3339 format
          type: string
        description:
          description: >
            human-readable description of this SSH Certificate Authority.
            optional, max 255 bytes.
          type: string
        metadata:
          description: >
            arbitrary user-defined machine-readable data of this SSH Certificate
            Authority. optional, max 4096 bytes.
          type: string
        public_key:
          description: |
            raw public key for this SSH Certificate Authority
          type: string
        key_type:
          description: |
            the type of private key for this SSH Certificate Authority
          type: string
  securitySchemes:
    authentication:
      type: http
      scheme: bearer

````