Redact API Reference
The Pangea Redact API helps developers limit the sprawl of sensitive information by performing redaction using defined rules.
Base URL
redact.<csp>.<region>.pangea.cloud
post/v1/redact
cURL
curl -sSLX POST 'https://redact.aws.us.pangea.cloud/v1/redact' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
Redact
POST
https://redact.aws.us.pangea.cloud/v1/redactRedact sensitive information from provided text.
post/v1/redact_structured
cURL
curl -sSLX POST 'https://redact.aws.us.pangea.cloud/v1/redact_structured' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
Redact structured
POST
https://redact.aws.us.pangea.cloud/v1/redact_structuredRedact sensitive information from structured data (e.g., JSON).
post/v1/unredact
cURL
curl -sSLX POST 'https://redact.aws.us.pangea.cloud/v1/unredact' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
Unredact
POST
https://redact.aws.us.pangea.cloud/v1/unredactDecrypt or unredact fpe redactions
post/v1/unredact_events
cURL
curl -sSLX POST 'https://redact.aws.us.pangea.cloud/v1/unredact_events' \
-H 'Authorization: Bearer <your_token>' \
-H 'Content-Type: application/json' \
-d '{}'
Response
200
Unredacts a list of secure audit log events redacted with FPE (Format Preserving Encryption)
POST
https://redact.aws.us.pangea.cloud/v1/unredact_eventsWas this article helpful?