Remove explicitly named RFC 6901-style JSON object paths; replace targeted array
Remove explicitly named RFC 6901-style JSON object paths; replace targeted array elements with null to preserve indices. Handles escaped slashes/tilde, reports missing paths, and rejects duplicate keys or lossy numbers. Does not automatically detect sensitive information.
Answeringour last check, 2026-09-26
1 of 1checks answered this week
1023 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://www.tradepilotusa.com/api/agent-commerce/v1/services/json_pointer_redact/execute
| Category | Code and developer |
|---|---|
| Provider host | www.tradepilotusa.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-26 | valid payment request | 402 | $0.01 | 1023 ms |
Example input (from the provider)
{
"body": {
"json": "{\"name\":\"Example\",\"contact\":{\"email\":\"person@example.com\"}}",
"pointers": [
"/contact/email"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"json": {
"maxLength": 48000,
"type": "string"
},
"pointers": {
"items": {
"maxLength": 500,
"pattern": "^/",
"type": "string"
},
"maxItems": 50,
"minItems": 1,
"type": "array"
}
},
"required": [
"json",
"pointers"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"provenance": {
"additionalProperties": false,
"properties": {
"execution": {
"const": "deterministic_local"
},
"model_used": {
"const": false
},
"network_request_performed": {
"const": false
}
},
"required": [
"execution",
"model_used",
"network_request_performed"
],
"type": "object"
},
"request_id": {
"maxLength": 100,
"type": "string"
},
"result": {
"additionalProperties": false,
"properties": {
"array_policy": {
"maxLength": 150,
"type": "string"
},
"json": {
"maxLength": 300000,
"type": "string"
},
"missing_pointers": {
"items": {
"maxLength": 500,
"type": "string"
},
"maxItems": 50,
"type": "array"
},
"removed_count": {
"minimum": 0,
"type": "integer"
},
"scope": {
"maxLength": 150,
"type": "string"
}
},
"required": [
"json",
"removed_count",
"missing_pointers",
"array_policy",
"scope"
],
"type": "object"
},
"utility": {
"const": "json_pointer_redact"
}
},
"required": [
"request_id",
"utility",
"result",
"provenance"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}