v1
latestOpenAPI 3.0.02026-08-066425196.1 KBUtilities
Fetch JSON data from S3 based on a provided URL.
This endpoint receives an S3 URL pointing to a resource, modifies the URL to target a JSON file instead of an image, and returns the content of the JSON file.
post/fetch-coords
Request body
Example request
{
"s3Url": "https://s3.amazonaws.com/bucket-name/path/to/file.jpg"
}Response
JSON data successfully retrieved from the specified S3 URL.
Example response
{
"data": {
"DocumentMetadata": {
"Pages": 1
},
"Blocks": [
{
"BlockType": "PAGE",
"Text": "Example text"
}
]
}
}