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

# GET /registry/metadata/v1/info

> Get information about the registry.
The response includes the standards supported by the registry.




## OpenAPI

````yaml /openapi/splice/token-standard/token-metadata-v1.yaml get /registry/metadata/v1/info
openapi: 3.0.0
info:
  title: token metadata service
  description: |
    Implemented by token registries for the purpose of serving metadata about
    their tokens and the standards supported by the registry.
  version: 1.2.0
servers: []
security: []
paths:
  /registry/metadata/v1/info:
    get:
      summary: GET /registry/metadata/v1/info
      description: |
        Get information about the registry.
        The response includes the standards supported by the registry.
      operationId: getRegistryInfo
      responses:
        '200':
          description: ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRegistryInfoResponse'
        '404':
          $ref: '#/components/responses/404'
        '500':
          $ref: '#/components/responses/500'
components:
  schemas:
    GetRegistryInfoResponse:
      type: object
      properties:
        adminId:
          description: The Daml party representing the registry app
          type: string
        supportedApis:
          $ref: '#/components/schemas/SupportedApis'
          description: >-
            The token standard APIs supported by the registry. Note that this
            only includes the registry-wide APIs. Use the instrument lookup
            endpoints to see which APIs are supported for a given instrument
      required:
        - adminId
        - supportedApis
    SupportedApis:
      description: >
        Map from token standard API name to the minor version of the API
        supported, e.g.,

        splice-api-token-metadata-v1 -> 1 where the `1` corresponds to the minor
        version.
      type: object
      additionalProperties:
        type: integer
        format: int32
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
  responses:
    '404':
      description: not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    '500':
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'

````