CodexHash SDKs & API

Access CodexHash via REST API or official SDKs. Choose your integration method.

🌐

REST API

v1.0.0-beta

Direct HTTP access to the CodexHash API. Use with any language or tool that supports HTTP requests.

Installation

HTTP/cURL
# No installation needed - use cURL, fetch, or any HTTP client

Features

  • Language agnostic
  • Direct API access
  • Full feature support
  • Hash creation & verification
  • Chain integrity verification
  • Metrics & analytics

Quick Start

# Create a new hash
curl -X POST https://codexhash.web3connected.com/api/hash/ \
  -H "Content-Type: application/json" \
  -d '{
    "data": "your-data-to-hash",
    "mode": "quick",
    "algo": "sha256"
  }'

# Response:
# {
#   "id": "a8d1ddee-79e9-4ca0-8156-ac0413d10583",
#   "created_at": "2026-03-13T12:00:00",
#   "payload_hash": "c9ababd6c6...",
#   "prev_event_hash": "b5a82e40...",
#   "event_hash": "9c22057440...",
#   "mode": "quick",
#   "algo": "sha256"
# }

# Verify hash integrity
curl -X POST https://codexhash.web3connected.com/api/hash/verify/{event_id}

# List hash events
curl https://codexhash.web3connected.com/api/hash/?limit=10

# Get specific hash event
curl https://codexhash.web3connected.com/api/hash/{event_id}

Hash Modes

Quick Mode

Fast hashing for high-throughput scenarios. Optimized for speed with standard security.

Standard Mode

Balanced hashing with enhanced security. Recommended for most use cases.

Secure Mode

Maximum security with additional entropy rounds. For sensitive data and critical applications.

Ready to Get Started?

Try the REST API directly or install the TypeScript SDK to start integrating CodexHash.