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

# List JSON schemas for all credential types

> Return JSON schemas for all registered credential types.

Used by the frontend to render credential creation forms dynamically.



## OpenAPI

````yaml /versions/2.0.2/en/deploy/openapi.json get /credential/schemas
openapi: 3.1.0
info:
  title: AgentScope
  version: 2.0.1
servers: []
security: []
paths:
  /credential/schemas:
    get:
      tags:
        - credential
      summary: List JSON schemas for all credential types
      description: |-
        Return JSON schemas for all registered credential types.

        Used by the frontend to render credential creation forms dynamically.
      operationId: list_credential_schemas_credential_schemas_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListCredentialSchemasResponse'
        '404':
          description: Not found
components:
  schemas:
    ListCredentialSchemasResponse:
      properties:
        schemas:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Schemas
          description: JSON schemas for all registered credential types.
      type: object
      required:
        - schemas
      title: ListCredentialSchemasResponse
      description: Response body for listing credential type schemas.

````