curl --request POST \
--url https://api.signa.so/v1/analysis/classify \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data @- <<EOF
{
"text": "Men's minimalist tee with fruit logo",
"category_hint": "tshirts",
"options": {
"top_k": 3
}
}
EOF{
"success": true,
"data": {
"predictions": [
{
"class": 123,
"confidence": 123,
"description": "<string>"
}
]
}
}AI-powered classification of product descriptions or categories into Nice Classification classes.
Processing time: ~150ms. Returns top predictions with confidence scores.
curl --request POST \
--url https://api.signa.so/v1/analysis/classify \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data @- <<EOF
{
"text": "Men's minimalist tee with fruit logo",
"category_hint": "tshirts",
"options": {
"top_k": 3
}
}
EOF{
"success": true,
"data": {
"predictions": [
{
"class": 123,
"confidence": 123,
"description": "<string>"
}
]
}
}Use your API key from the dashboard. Include it in the Authorization header as a Bearer token.
Authorization: Bearer YOUR_API_KEYGet your API key at https://signa.so/dashboard