Skip to main content
GET
/
edubridge
/
progression
/
catalog
Browse available lessons
curl --request GET \
  --url https://api.alpha-1edtech.ai/edubridge/progression/catalog \
  --header 'Authorization: Bearer <token>'
{
  "app": "freckle",
  "lastRefreshed": "2025-11-01T14:30:00.000Z",
  "lessons": [
    {
      "lessonId": "<string>",
      "lessonName": "<string>",
      "subject": "<string>",
      "subjects": [],
      "gradeLevel": "<string>",
      "standards": [],
      "metadata": {}
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 100,
    "total": 42,
    "totalPages": 1
  }
}

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.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

app
string
required

Educational app to query

Example:

"freckle"

subject

Filter by subject area. Can specify multiple subjects by repeating the parameter.

Example:

"math"

gradeLevel

Filter by grade level. Can specify multiple grades by repeating the parameter. Valid grades: P, K, 1-12

Example:

"5"

page
integer
default:1

Page number (starts at 1)

Required range: x >= 1
Example:

1

limit
integer
default:100

Number of items per page (max 500)

Required range: 1 <= x <= 500
Example:

100

Response

Lessons retrieved successfully

app
string
required

Educational app name

Example:

"freckle"

lastRefreshed
string | null
required

Timestamp when the catalog was last updated from the app

Example:

"2025-11-01T14:30:00.000Z"

lessons
object[]
required

Available lessons matching the filter criteria

pagination
object
required