curl --location --request GET 'http://dev-cn.your-api-server.com/Inferences/Model//InferenceRequestFiles/GetPredictions/'
{
"moderated_images": [
{
"day_since_epoch": 0,
"file_url": "uploadedfiles/<id>/PredictionImages/<original_image_name><timestamp_based_string>",
"hour_of_day": 0,
"id": "uuid",
"is_moderated": true,
"model_id": "<model_id>",
"moderated_boxes": [
null
],
"original_file_name": "<filename>",
"page": 0,
"predicted_boxes": [
{
"id": "uuid",
"label": "category1",
"ocr_text": "string",
"score": 0.9,
"status": "correctly_predicted",
"type": "field|table",
"xmax": 100,
"xmin": 0,
"ymax": 100,
"ymin": 0
},
{
"cells": [
{
"col": 1,
"col_span": 1,
"label": "col 1",
"row": 1,
"row_span": 1,
"score": 99.99,
"text": "ocr text 1",
"xmax": 258,
"xmin": 159,
"ymax": 1357,
"ymin": 1258
},
{
"col": 2,
"col_span": 1,
"label": "col 2",
"row": 1,
"row_span": 1,
"score": 99.99,
"text": "ocr text 2",
"xmax": 380,
"xmin": 258,
"ymax": 1357,
"ymin": 1258
},
{
"col": 1,
"col_span": 1,
"label": "col 1",
"row": 2,
"row_span": 1,
"score": 99.99,
"text": "ocr text 3",
"xmax": 258,
"xmin": 159,
"ymax": 1439,
"ymin": 1357
},
{
"col": 2,
"col_span": 1,
"label": "col 2",
"row": 2,
"row_span": 1,
"score": 99.99902,
"text": "ocr text 4",
"xmax": 380,
"xmin": 258,
"ymax": 1439,
"ymin": 1357
}
],
"label": "",
"ocr_text": "table 1",
"score": 99.99,
"type": "table",
"xmax": 380,
"xmin": 159,
"ymax": 1439,
"ymin": 1258
}
],
"request_file_id": "uuid",
"request_metadata": "metadata sent during prediction",
"status": "Success",
"updated_at": "timeuuid",
"url": "uploadedfiles/<id>/PredictionImages/<image_name>",
"verified_at": "timeuuid",
"verified_by": "<person_name>"
}
],
"moderated_images_count": 0,
"signed_urls": [
null
],
"unmoderated_images": [
null
],
"unmoderated_images_count": 1
}