Skip to main content
POST
/
v3
/
bleep
Bleep
curl --request POST \
  --url https://api.private-ai.com/deid/v3/bleep \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "file": {
    "data": "<string>",
    "content_type": "<string>"
  },
  "timestamps": [
    {
      "start": 123,
      "end": 123
    }
  ]
}
'
{
  "bleeped_file": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json
file
FileData · object
required

File object containing base64 encoded text data and its content type.

timestamps
PIITimestamp · object[]
required

Response

Successful Response

bleeped_file
string
required

the base64 encoded file content of the redacted file.