Authentication
K12
- Handwritten Gen Evaluation
- Handwritten Exam Evaluation
- Content Generation
- Lesson Plan Generation
- Content Generation
- MCQ Generation
- Worksheet Generation
- Assignment Evaluation
Assessment Rubrics
- Rubrics
Standardized Language Exams
- Embeddable UI
- TOEFL Evaluation
- IELTS Evaluation
GET generated MCQs
This endpoint is designed to retrieve a specific set of multiple choice questions (MCQs) that have been previously generated and stored, using the request id This endpoint is particularly useful for users who need to access and review previously created MCQs.
curl --request GET \
--url https://api-staging.crazygoldfish.com/v1/k12/generate/mcqs/{request_id} \
--header 'Authorization: <api-key>' \
--header 'accept: <accept>'
{
"status_code": 200,
"status": "Completed",
"message": "MCQs request : Completed",
"data": {
"request_id": "715f5d20-2b82-4ffe-b20d-0e6bcca6651d",
"client_id": "1",
"created_at": "2025-01-07T17:43:13.595406",
"MCQs": [
{
"subject": "Science",
"topic": "Photosynthesis",
"questions": [
{
"question_id": 1,
"question": "What is the main pigment involved in photosynthesis?",
"options": [
"A-Chlorophyll",
"B-Hemoglobin",
"C-Keratin",
"D-Melanin"
],
"tags": [
{
"Difficulty_level": "easy",
"Bloom_s_Taxonomy": "Remember",
"Competency": "Understanding electrical safety [CO101]",
"Curricular_Goal": "Electrical safety in circuits [CG201]",
"LO": "Identify the function of different wires in an electrical circuit",
"LOB": "Understand the role of the earth wire in preventing electric shock",
"Hints": "Think about the wire connected to the ground."
}
]
}
],
"solution_sheet": [
{
"question_id": 1,
"correct_answer": "C"
}
],
"topics": [
"Photosynthesis",
"Cell Structure"
]
}
]
}
}
Authorizations
Headers
Specifies the format of the response.
application/json
Path Parameters
Unique identifier of the MCQ generation request.
Response
200
"Completed"
"MCQs request : Completed"
"715f5d20-2b82-4ffe-b20d-0e6bcca6651d"
"1"
"2025-01-07T17:43:13.595406"
"Science"
"Photosynthesis"
1
"What is the main pigment involved in photosynthesis?"
[
"A-Chlorophyll",
"B-Hemoglobin",
"C-Keratin",
"D-Melanin"
]
"easy"
"Remember"
"Understand the role of chlorophyll in photosynthesis"
"Identify the pigment responsible for photosynthesis"
"Understand the process of photosynthesis"
"Understand the role of the earth wire in preventing electric shock"
"The pigment is green in color and is found in plant cells."
["Photosynthesis", "Cell Structure"]
curl --request GET \
--url https://api-staging.crazygoldfish.com/v1/k12/generate/mcqs/{request_id} \
--header 'Authorization: <api-key>' \
--header 'accept: <accept>'
{
"status_code": 200,
"status": "Completed",
"message": "MCQs request : Completed",
"data": {
"request_id": "715f5d20-2b82-4ffe-b20d-0e6bcca6651d",
"client_id": "1",
"created_at": "2025-01-07T17:43:13.595406",
"MCQs": [
{
"subject": "Science",
"topic": "Photosynthesis",
"questions": [
{
"question_id": 1,
"question": "What is the main pigment involved in photosynthesis?",
"options": [
"A-Chlorophyll",
"B-Hemoglobin",
"C-Keratin",
"D-Melanin"
],
"tags": [
{
"Difficulty_level": "easy",
"Bloom_s_Taxonomy": "Remember",
"Competency": "Understanding electrical safety [CO101]",
"Curricular_Goal": "Electrical safety in circuits [CG201]",
"LO": "Identify the function of different wires in an electrical circuit",
"LOB": "Understand the role of the earth wire in preventing electric shock",
"Hints": "Think about the wire connected to the ground."
}
]
}
],
"solution_sheet": [
{
"question_id": 1,
"correct_answer": "C"
}
],
"topics": [
"Photosynthesis",
"Cell Structure"
]
}
]
}
}