Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
multipart/form-data
Response
200 - Image / 200 - Webpage
The response is of type object
.
curl --request POST \
--url https://api.withflora.io/v1/extractions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form schema_id=ec9cb821-6f69-4605-a7fc-0858667eb534 \
--form type=image \
--form model=gpt-4.1 \
--form source=https://8ddf98.jpg
{
"data": {
"id": "c39c0c98-d71c-471c-a7e0-6e3fcf2f8298",
"output": {
"amount": 38580,
"currency": "NGN",
"products": [
{
"amount": 1600,
"name": "Chicken Pie",
"quantity": 2
},
{
"amount": 3750,
"name": "Ayoola Poundo Yam",
"quantity": 1
},
{
"amount": 5000,
"name": "Seedless Grape",
"quantity": 1
}
],
"storeName": "XYZ Superstores"
},
"totalTokens": 1795
},
"message": "Extraction completed successfully",
"status": true
}
Extract data from an unstructured source using a schema
curl --request POST \
--url https://api.withflora.io/v1/extractions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form schema_id=ec9cb821-6f69-4605-a7fc-0858667eb534 \
--form type=image \
--form model=gpt-4.1 \
--form source=https://8ddf98.jpg
{
"data": {
"id": "c39c0c98-d71c-471c-a7e0-6e3fcf2f8298",
"output": {
"amount": 38580,
"currency": "NGN",
"products": [
{
"amount": 1600,
"name": "Chicken Pie",
"quantity": 2
},
{
"amount": 3750,
"name": "Ayoola Poundo Yam",
"quantity": 1
},
{
"amount": 5000,
"name": "Seedless Grape",
"quantity": 1
}
],
"storeName": "XYZ Superstores"
},
"totalTokens": 1795
},
"message": "Extraction completed successfully",
"status": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
200 - Image / 200 - Webpage
The response is of type object
.
Was this page helpful?