MSuvidha Techh
Commercial REST API v1.0

MSuvidha Techh Developer API Platform

Integrate lightning-fast, privacy-first conversion, cryptography, and Hindi typography engines directly into your applications.

Authentication

Pass your API key in every request using the x-api-key header or Bearer authorization.

curl -X POST https://msuvidhatechh.com/api/v1/kruti-dev -H "x-api-key: 360t_live_your_key_here"

Available Endpoints

Kruti Dev ↔ Unicode Conversion API

Convert between legacy Kruti Dev 010 and modern Unicode Devanagari Hindi text.

POST/api/v1/kruti-dev
Example Request Payload:
{
  "text": "d`fr nso fgUnh",
  "direction": "k2u"
}
Standard Response:
{
  "success": true,
  "data": {
    "direction": "k2u",
    "originalLength": 14,
    "convertedLength": 11,
    "result": "कृति देव हिन्दी"
  },
  "error": null,
  "message": "Conversion completed successfully",
  "usage": {
    "latencyMs": 3,
    "monthlyQuota": 10000
  }
}

Text Analysis & Transformation API

Analyze word/character counts or execute slugification, cleaning, and case conversions.

POST/api/v1/text
Example Request Payload:
{
  "text": "Hello World MSuvidha Techh",
  "action": "stats"
}
Standard Response:
{
  "success": true,
  "data": {
    "words": 4,
    "characters": 21,
    "charactersNoSpaces": 18,
    "sentences": 1,
    "paragraphs": 1,
    "readingTimeSec": 1
  },
  "error": null,
  "message": "Text stats executed successfully",
  "usage": {
    "latencyMs": 2,
    "monthlyQuota": 10000
  }
}

Cryptographic Hash & UUID API

Generate high-performance MD5, SHA-1, SHA-256, SHA-512 hashes or UUIDv4 identifiers.

POST/api/v1/crypto
Example Request Payload:
{
  "text": "password123",
  "algorithm": "sha256"
}
Standard Response:
{
  "success": true,
  "data": {
    "algorithm": "sha256",
    "inputLength": 11,
    "hash": "ef92b778bafe771e89245b89ecbc08a44a4e166c06659911881f383d4473e94f"
  },
  "error": null,
  "message": "Success",
  "usage": {
    "latencyMs": 1,
    "monthlyQuota": 10000
  }
}