Calculate a SHA-256 digest and UTF-8 byte length of supplied text without normal
Calculate a SHA-256 digest and UTF-8 byte length of supplied text without normalization. Useful for comparing exact text artifacts. Does not prove authorship, authenticity or safe content; do not submit passwords or secrets.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.01listed price per call
n/aprice 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/text_sha256_digest/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
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"text": "abc"
},
"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": {
"text": {
"maxLength": 48000,
"type": "string"
}
},
"required": [
"text"
],
"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": {
"algorithm": {
"const": "SHA-256"
},
"byte_length": {
"minimum": 0,
"type": "integer"
},
"digest": {
"pattern": "^[0-9a-f]{64}$",
"type": "string"
},
"encoding": {
"const": "UTF-8"
},
"normalization": {
"maxLength": 150,
"type": "string"
}
},
"required": [
"algorithm",
"encoding",
"digest",
"byte_length",
"normalization"
],
"type": "object"
},
"utility": {
"const": "text_sha256_digest"
}
},
"required": [
"request_id",
"utility",
"result",
"provenance"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}