Data Transform
Hash identifier API
Identify likely hash formats from length and character set patterns.
Price$0.01per request
MethodPOST
Route/v1/data-transform/hash-id
StatusLive
MIME typeapplication/json
Rate limit180/minute
CacheNo cache
data-transformhashidentifiercryptography
API URL
Integration docshttps://x402.hexl.dev/v1/data-transform/hash-idExample request
{
"hash": "5d41402abc4b2a76b9719d911017c592"
}Example response
{
"hash": "5d41402abc4b2a76b9719d911017c592",
"candidates": [
{
"algorithm": "md5",
"confidence": "high"
}
],
"provider": "local-patterns"
}Input schema
{
"type": "object",
"required": [
"hash"
],
"properties": {
"hash": {
"type": "string",
"minLength": 1
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}