Skip to main content
POST
/
v2
/
transactions
/
humanize
Humanize a transaction
curl --request POST \
  --url https://api.range.org/v2/transactions/humanize \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "hash": "5UfDuX...",
  "network": "solana"
}
'
{
  "output": {},
  "model": "<string>",
  "trace_id": "<string>",
  "latency_ms": 123
}

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Body

application/json
hash
string
required

Transaction hash

Example:

"5UfDuX..."

network
string
required

Blockchain network identifier

Example:

"solana"

Response

200 - application/json

Human-readable explanation of the transaction.

output
object
required

Prompt-defined output (JSON object or string), passed through untouched.

model
string
required

Model that produced the output.

trace_id
string
required

Upstream trace identifier (observability handle).

latency_ms
number
required

Upstream latency in milliseconds.

Last modified on June 16, 2026