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

# Get v2.0 API Discovery Information

> Returns the OpenAPI 3.0 specification for the CLR v2.0 API. This endpoint provides 
    discovery information including available endpoints, OAuth2 flows, and supported scopes. This is a public 
    endpoint that allows clients to dynamically discover the service's capabilities without prior configuration.



## OpenAPI

````yaml /openapi/beyond-ai/clr-api.yaml get /ims/clr/v2p0/discovery/
openapi: 3.1.0
info:
  title: CLR API
  version: 1.0.0
  description: >-
    Comprehensive Learner Record (CLR) is a standard for creating, transmitting,
    and rendering an individual's full set of achievements, issued by multiple
    learning providers, 
      in a machine-readable and verifiable digital format. It enables the curation of diverse learning experiences—including courses, competencies, co-curricular activities, 
      and badges—into a single, interoperable record that supports a learner's lifelong educational and career journey.
servers:
  - url: https://api.alpha-1edtech.ai
    description: CLR API
security:
  - OAuth2: []
tags:
  - name: Credentials
    description: Manage CLR Credentials
  - name: Discovery
    description: Discover CLR v2.0 API capabilities and endpoints
paths:
  /ims/clr/v2p0/discovery/:
    get:
      tags:
        - Discovery
      summary: Get v2.0 API Discovery Information
      description: >-
        Returns the OpenAPI 3.0 specification for the CLR v2.0 API. This
        endpoint provides 
            discovery information including available endpoints, OAuth2 flows, and supported scopes. This is a public 
            endpoint that allows clients to dynamically discover the service's capabilities without prior configuration.
      operationId: getDiscovery
      responses:
        '200':
          description: Discovery information returned successfully
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
      security: []
components:
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          scopes:
            https://purl.imsglobal.org/spec/or/v1p1/scope/admin: Admin access to the API
            https://purl.imsglobal.org/spec/or/v1p2/scope/admin.own: Admin access restricted to own resources
            https://purl.imsglobal.org/spec/or/v1p1/scope/roster-core.readonly: Read access to roster core
            https://purl.imsglobal.org/spec/or/v1p1/scope/roster.readonly: Read access to roster
            https://purl.imsglobal.org/spec/or/v1p1/scope/roster.createput: Create and update access to roster
            https://purl.imsglobal.org/spec/or/v1p1/scope/roster.delete: Delete access to roster
            https://purl.imsglobal.org/spec/or/v1p1/scope/roster-demographics.readonly: Read access to roster demographics
            https://purl.imsglobal.org/spec/or/v1p1/scope/roster-demographics.createput: Create and update access to roster demographics
            https://purl.imsglobal.org/spec/or/v1p1/scope/roster-demographics.delete: Delete access to roster demographics
            https://purl.imsglobal.org/spec/or/v1p1/scope/resource.readonly: Read access to resource
            https://purl.imsglobal.org/spec/or/v1p1/scope/resource.createput: Create and update access to resource
            https://purl.imsglobal.org/spec/or/v1p1/scope/resource.delete: Delete access to resource
            https://purl.imsglobal.org/spec/or/v1p1/scope/gradebook.readonly: Read access to gradebook
            https://purl.imsglobal.org/spec/or/v1p1/scope/gradebook.createput: Create and update access to gradebook
            https://purl.imsglobal.org/spec/or/v1p1/scope/gradebook.delete: Delete access to gradebook
            https://purl.imsglobal.org/spec/powerpath/v1p1/scope/powerpath.readonly: Read access to powerpath
            https://purl.imsglobal.org/spec/powerpath/v1p1/scope/powerpath.createput: Create and update access to powerpath
            https://purl.imsglobal.org/spec/powerpath/v1p1/scope/powerpath.delete: Delete access to powerpath
            https://purl.imsglobal.org/spec/powerpath/v1p1/scope/powerpath.admin: Admin access to powerpath
            https://purl.imsglobal.org/spec/ob/v3p0/scope/credential.readonly: Read your issued badges
            https://purl.imsglobal.org/spec/ob/v3p0/scope/credential.upsert: Store new badges in your account
            https://purl.imsglobal.org/spec/ob/v3p0/scope/credential.delete: Delete access to open badges
            https://purl.imsglobal.org/spec/ob/v3p0/scope/credential.admin: Administrative access to open badges
            https://purl.imsglobal.org/spec/clr/v2p0/scope/credential.readonly: Read access to CLR
            https://purl.imsglobal.org/spec/clr/v2p0/scope/credential.upsert: Create and update access to CLR
            https://purl.imsglobal.org/spec/clr/v2p0/scope/credential.admin: Administrative access to CLR
            https://api.alpha-1edtech.ai/edubridge/progression.readonly: Browse lesson catalog via progression proxy
            https://api.alpha-1edtech.ai/edubridge/progression.createput: Create hole-filling courses via progression proxy
          tokenUrl: >-
            https://prod-beyond-timeback-api-2-idp.auth.us-east-1.amazoncognito.com/oauth2/token

````