curl --request POST \
--url https://api.usehandled.io/api/v1/ipaas/inference/intent-classify/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"messages": [
{
"id": "msg_001",
"message": "Where is my order?"
},
{
"id": "msg_002",
"message": "I want a refund for order #4521"
},
{
"id": "msg_003",
"message": "Do you have this in blue?"
}
],
"top_k": 1
}
'