安全加密与语音合成 API 服务

提供基于 AES-CBC + HMAC 认证的安全加密服务,以及高质量的文本转语音功能,助力您的应用开发。

查看 API 文档

核心特性

我们的 API 提供强大而可靠的功能,满足您的各种需求

🔒

安全加密

使用 AES-CBC 加密算法和 HMAC 认证,以上万喃字作为编码层,确保您的数据安全无忧。

🗣️

语音合成

支持多种语言和声音,生成自然流畅的语音输出。

高性能

优化的算法和基础设施,确保快速响应和高并发处理。

🔧

易于集成

提供清晰的 API 文档和示例代码,轻松集成到您的应用中。

API 文档

详细的 API 接口说明和使用示例

加密 API
语音合成 API

POST 文本加密

POST https://jiami.241cloud.top/api/encrypt

请求参数 (JSON)

参数类型必需说明
textstring要加密的文本
passwordstring加密密码(至少8位)

响应示例

{
  "success": true,
  "data": "喃字加密后的字符串..."
}

POST 文本解密

POST https://jiami.241cloud.top/api/decrypt

请求参数 (JSON)

参数类型必需说明
textstring喃字密文
passwordstring解密密码

响应示例

{
  "success": true,
  "data": "解密后的原始文本"
}

GET 文本加密

GET https://jiami.241cloud.top/api/encrypt?text=hello&password=12345678

查询参数

参数类型必需说明
textstring要加密的文本
passwordstring加密密码(至少8位)

GET 文本解密

GET https://jiami.241cloud.top/api/decrypt?text=喃字密文&password=12345678

查询参数

参数类型必需说明
textstring喃字密文
passwordstring解密密码

GET 健康检查

GET https://tts.241cloud.top/health

检查 API 服务是否正常运行。

GET 获取语音列表

GET https://tts.241cloud.top/voices

获取可用的语音列表。

GET 文本转语音

GET https://tts.241cloud.top/tts?text=你好,这是一个测试语音API&voice=zh-CN-XiaoyiNeural

查询参数

参数类型必需说明
textstring要转换为语音的文本
voicestring语音类型(如:zh-CN-XiaoyiNeural)

POST 文本转语音

POST https://tts.241cloud.top/tts

请求参数 (JSON)

参数类型必需说明
textstring要转换为语音的文本
voicestring语音类型
ratestring语速(如:+0%)
volumestring音量(如:+0%)

使用示例

查看如何在您的应用中集成我们的 API

🔒 加密 API 示例

// 使用 cURL 进行加密
curl -X POST "https://jiami.241cloud.top/api/encrypt" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "这是要加密的敏感信息",
    "password": "mysecurepassword123"
  }'

// 使用 JavaScript 进行加密
const response = await fetch('https://jiami.241cloud.top/api/encrypt', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    text: '这是要加密的敏感信息',
    password: 'mysecurepassword123'
  })
});
const result = await response.json();

🗣️ 语音合成 API 示例

// 使用 cURL 生成中文语音
curl "https://tts.241cloud.top/tts?text=你好,这是一个测试语音API&voice=zh-CN-XiaoyiNeural" --output speech.mp3

// 使用 cURL 生成英文语音
curl "https://tts.241cloud.top/tts?text=Hello, this is a test speech API&voice=en-US-AriaNeural" --output speech_en.mp3

// 使用 JavaScript 生成语音
const response = await fetch('https://tts.241cloud.top/tts?text=你好,世界&voice=zh-CN-XiaoyiNeural');
const audioBlob = await response.blob();
const audioUrl = URL.createObjectURL(audioBlob);
const audio = new Audio(audioUrl);
audio.play();