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

# OAuth Authorization Server Metadata

> Provides metadata about the OAuth authorization server.



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml get /.well-known/oauth-authorization-server
openapi: 3.0.1
info:
  title: Midsommar API
  description: This is the API for the Midsommar user and group management system.
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    url: http://www.swagger.io/support
    email: support@swagger.io
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
  - url: //localhost:8080/api/v1
security: []
paths:
  /.well-known/oauth-authorization-server:
    get:
      tags:
        - oauth
      summary: OAuth Authorization Server Metadata
      description: Provides metadata about the OAuth authorization server.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.OAuthServerMetadata'
components:
  schemas:
    api.OAuthServerMetadata:
      type: object
      properties:
        authorization_endpoint:
          type: string
        code_challenge_methods_supported:
          type: array
          items:
            type: string
        device_authorization_endpoint:
          type: string
        grant_types_supported:
          type: array
          items:
            type: string
        introspection_endpoint:
          type: string
        issuer:
          type: string
        jwks_uri:
          type: string
        op_policy_uri:
          type: string
        op_tos_uri:
          type: string
        pushed_authorization_request_endpoint:
          type: string
        registration_endpoint:
          type: string
        request_parameter_supported:
          type: boolean
        request_uri_parameter_supported:
          type: boolean
        require_pushed_authorization_requests:
          type: boolean
        response_types_supported:
          type: array
          items:
            type: string
        revocation_endpoint:
          type: string
        scopes_supported:
          type: array
          items:
            type: string
        service_documentation:
          type: string
        tls_client_certificate_bound_access_tokens:
          type: boolean
        token_endpoint:
          type: string
        token_endpoint_auth_methods_supported:
          type: array
          items:
            type: string
        ui_locales_supported:
          type: array
          items:
            type: string

````