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

# Well Known Oauth

> RFC 8414 OAuth Authorization Server Metadata.



## OpenAPI

````yaml /openapi.json get /.well-known/oauth-authorization-server
openapi: 3.1.0
info:
  title: AgentPowers API
  description: Paid marketplace for Claude Code skills and agents
  version: 0.1.0
servers:
  - url: https://api.agentpowers.ai
    description: Production
security: []
paths:
  /.well-known/oauth-authorization-server:
    get:
      tags:
        - oauth
      summary: Well Known Oauth
      description: RFC 8414 OAuth Authorization Server Metadata.
      operationId: well_known_oauth__well_known_oauth_authorization_server_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OAuthMetadataResponse'
components:
  schemas:
    OAuthMetadataResponse:
      properties:
        issuer:
          type: string
          title: Issuer
        authorization_endpoint:
          type: string
          title: Authorization Endpoint
        token_endpoint:
          type: string
          title: Token Endpoint
        registration_endpoint:
          type: string
          title: Registration Endpoint
        response_types_supported:
          items:
            type: string
          type: array
          title: Response Types Supported
        grant_types_supported:
          items:
            type: string
          type: array
          title: Grant Types Supported
        token_endpoint_auth_methods_supported:
          items:
            type: string
          type: array
          title: Token Endpoint Auth Methods Supported
        code_challenge_methods_supported:
          items:
            type: string
          type: array
          title: Code Challenge Methods Supported
      type: object
      required:
        - issuer
        - authorization_endpoint
        - token_endpoint
        - registration_endpoint
        - response_types_supported
        - grant_types_supported
        - token_endpoint_auth_methods_supported
        - code_challenge_methods_supported
      title: OAuthMetadataResponse

````