Handwritten Gen Evaluation
v1/evaluation/{id}
Authentication
K12
- Handwritten Gen Evaluation
- Handwritten Exam Evaluation
- Content Generation
Standardized Language Exams
- Embeddable UI
- TOEFL Evaluation
- IELTS Evaluation
Handwritten Gen Evaluation
v1/evaluation/{id}
This endpoint allows B2B clients to retrieve a specific evaluation report using its unique identifier (ID). Clients can access past evaluations or reference specific reports by providing the evaluation ID.
GET
/
v1
/
evaluation
/
{id}
curl --request GET \
--url https://api-staging.crazygoldfish.com/v1/evaluation/{id} \
--header 'Authorization: Bearer <token>'
{
"status": "200",
"message": "request successfully",
"data": {
"evalution_id": "<string>",
"client_id": "<string>",
"evaluation_type": "<string>",
"evaluation": [
{
"report_header": {
"class": "<string>",
"subject": "<string>",
"no_of_images": "<string>",
"student_name": "<string>",
"date_of_evaluation": "<string>",
"total_questions_attempted": "<string>"
},
"overview": {
"holistic_evaluation": {
"creativity": "<string>",
"organization": "<string>",
"content_relevance": "<string>",
"clarity_expression": "<string>",
"grammar_punctuation": "<string>"
},
"summary": "<string>"
},
"detailed_evaluation": {
"total_suggestions": "<string>",
"spelling_suggestions": "<string>",
"punctuation_suggestions": "<string>",
"grammar_suggestions": "<string>",
"image_assessment": [
{
"image": "<string>",
"questions": [
{
"errors": [
{
"error_type": "<string>",
"suggestions": [
"<string>"
]
}
],
"question": 123
}
]
}
]
},
"actionables": {
"actionable_points": [
"<string>"
]
}
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Unique evaluation ID generated during image submissions.
Query Parameters
Unique identifier assigned to the client accessing the API.
Specifies the format of evaluation report to retrieve.
Available options:
json
, html_link
Response
200 - application/json
Successful response
Example:
"200"
Example:
"request successfully"
curl --request GET \
--url https://api-staging.crazygoldfish.com/v1/evaluation/{id} \
--header 'Authorization: Bearer <token>'
{
"status": "200",
"message": "request successfully",
"data": {
"evalution_id": "<string>",
"client_id": "<string>",
"evaluation_type": "<string>",
"evaluation": [
{
"report_header": {
"class": "<string>",
"subject": "<string>",
"no_of_images": "<string>",
"student_name": "<string>",
"date_of_evaluation": "<string>",
"total_questions_attempted": "<string>"
},
"overview": {
"holistic_evaluation": {
"creativity": "<string>",
"organization": "<string>",
"content_relevance": "<string>",
"clarity_expression": "<string>",
"grammar_punctuation": "<string>"
},
"summary": "<string>"
},
"detailed_evaluation": {
"total_suggestions": "<string>",
"spelling_suggestions": "<string>",
"punctuation_suggestions": "<string>",
"grammar_suggestions": "<string>",
"image_assessment": [
{
"image": "<string>",
"questions": [
{
"errors": [
{
"error_type": "<string>",
"suggestions": [
"<string>"
]
}
],
"question": 123
}
]
}
]
},
"actionables": {
"actionable_points": [
"<string>"
]
}
}
]
}
}