POST
/
v1
/
deanonymize
curl --request POST \
  --url https://api.scooba.ai/v1/deanonymize \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "anonymized_text": [
    "<string>"
  ],
  "entities_map": [
    {
      "text": "<string>",
      "anonymized_text": "<string>"
    }
  ]
}'
{
  "deanonymized_text": [
    "<string>"
  ]
}

Authorizations

X-API-Key
string
header
required

Body

application/json
anonymized_text
string[]
required
entities_map
object[]

Response

200
application/json
Successful response
deanonymized_text
string[]