curl --location --request POST 'https://dev-api.idukki.io/sentiment-analysis' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"Records": [
{
"body": "{\"comments\": [{\"comment_id\": \"1\", \"text\": \"This product is amazing! I love it!\"}, {\"comment_id\": \"2\", \"text\": \"Terrible experience, very disappointed\"}, {\"comment_id\": \"3\", \"text\": \"How do I return this item?\"}]}"
}
]
}'{}