curl --location --request POST 'https://dev.your-api-server.com/api/ner/v1/single/example' \
--header 'Accept: application/json, text/plain, */*' \
--header 'authorization: {{ACCESS_TOKEN}}' \
--header 'Content-Type: application/json;charset=UTF-8' \
--data-raw '{
"projectId": "6ad6106e-7d59-4134-a4a8-aa185b5e5dd4",
"language": "en",
"example": {
"text":"I work in Feuralspace office1",
"entities": [
{
"start": 10,
"end": 21,
"entity": "org",
"value": "Feuralspace"
}
]
}
}'
{}