Data Transform
Deep omit paths API
Returns a copy of an object with the listed dot-paths removed (deep delete of each). Answers 'How do I strip specific nested fields?', 'How do I omit deep keys from JSON?'.
Price$0.01per request
MethodPOST
Route/v1/data-transform/deep-omit
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
data-transformomitjsonpathremovesubsetwrangle
API URL
Integration docshttps://x402.hexl.dev/v1/data-transform/deep-omitExample request
{
"object": {
"a": {
"b": 1,
"c": 2
},
"d": 3
},
"paths": [
"a.c"
]
}Example response
{
"result": {
"a": {
"b": 1
},
"d": 3
}
}Input schema
{
"type": "object",
"required": [
"object",
"paths"
],
"properties": {
"object": {
"type": "object",
"examples": [
{
"a": {
"b": 1,
"c": 2
},
"d": 3
}
]
},
"paths": {
"type": "array",
"examples": [
[
"a.c"
]
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}