> ## Documentation Index
> Fetch the complete documentation index at: https://cantonfoundation-canton-docs-snippet-dedupe.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /v0/admin/validator/licenses

> List all validators currently approved by members of the DSO, paginated,
sorted newest-first.




## OpenAPI

````yaml /openapi/splice/scan/scan.yaml get /v0/admin/validator/licenses
openapi: 3.0.0
info:
  title: Scan API
  version: 0.0.1
servers:
  - url: https://scan.sv-1.global.canton.network.sync.global/api/scan
security: []
tags:
  - name: external
    description: >
      These endpoints are intended for public usage and will remain
      backward-compatible.
  - name: internal
    description: >
      For internal usage only, not guaranteed to be stable or
      backward-compatible.
  - name: deprecated
    description: |
      These endpoints are deprecated and will be removed in a future release.
  - name: scan
    description: |
      The internal and external endpoints.
  - name: pre-alpha
    description: |
      Still under active development, highly unstable. Do not use in production.
paths:
  /v0/admin/validator/licenses:
    get:
      tags:
        - external
        - scan
      summary: GET /v0/admin/validator/licenses
      description: |
        List all validators currently approved by members of the DSO, paginated,
        sorted newest-first.
      operationId: listValidatorLicenses
      parameters:
        - name: after
          description: >
            A `next_page_token` from a prior response; if absent, return the
            first page.
          in: query
          required: false
          schema:
            type: integer
            format: int64
        - name: limit
          description: Maximum number of elements to return, 1000 by default.
          in: query
          required: false
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListValidatorLicensesResponse'
components:
  schemas:
    ListValidatorLicensesResponse:
      type: object
      required:
        - validator_licenses
      properties:
        validator_licenses:
          description: >-
            Contracts of Daml template
            `Splice.ValidatorLicense:ValidatorLicense`.
          type: array
          items:
            $ref: '#/components/schemas/Contract'
        next_page_token:
          type: integer
          format: int64
          description: >
            When requesting the next page of results, pass this as URL query
            parameter `after`.

            If absent or `null`, there are no more pages.
    Contract:
      type: object
      properties:
        template_id:
          type: string
        contract_id:
          type: string
        payload:
          type: object
        created_event_blob:
          type: string
        created_at:
          type: string
      required:
        - template_id
        - contract_id
        - payload
        - created_event_blob
        - created_at

````