GET
/
ai
/
v1
/
lesson-plan
/
metadata
/
{lesson_plan_id}
Retrieve the metadata of a lesson plan by its ID.
curl --request GET \
  --url https://api-staging.crazygoldfish.com/ai/v1/lesson-plan/metadata/{lesson_plan_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "board": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    },
    "grade": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    },
    "section": "<string>",
    "subject": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    },
    "status": "<string>",
    "duration_minutes": 123,
    "topic": "<string>",
    "subject_matter": {
      "topics_to_be_covered": {
        "topic": [
          "<string>"
        ]
      },
      "key_concepts_and_subconcepts": {
        "topics": [
          {
            "topic": "<string>",
            "sub_topic": [
              "<string>"
            ]
          }
        ],
        "concepts": [
          {
            "concept": "<string>",
            "sub_concept": [
              "<string>"
            ]
          }
        ]
      },
      "prerequisite_knowledge": {
        "prerequisite": [
          "<string>"
        ]
      }
    },
    "learning_standards": {
      "learning_outcomes": {
        "outcomes": [
          "<string>"
        ]
      },
      "smart_objectives": {
        "objects": [
          "<string>"
        ]
      },
      "competencies": {
        "competency_list": [
          {
            "name": "<string>",
            "description": "<string>"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

lesson_plan_id
string<uuid>
required

Unique identifier of the lesson plan.

Response

200
application/json

Lesson plan metadata retrieved successfully.

The response is of type object.