我们的 API 提供强大而可靠的功能,满足您的各种需求
使用 AES-CBC 加密算法和 HMAC 认证,以上万喃字作为编码层,确保您的数据安全无忧。
支持多种语言和声音,生成自然流畅的语音输出。
优化的算法和基础设施,确保快速响应和高并发处理。
提供清晰的 API 文档和示例代码,轻松集成到您的应用中。
详细的 API 接口说明和使用示例
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| text | string | 是 | 要加密的文本 |
| password | string | 是 | 加密密码(至少8位) |
{
"success": true,
"data": "喃字加密后的字符串..."
}
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| text | string | 是 | 喃字密文 |
| password | string | 是 | 解密密码 |
{
"success": true,
"data": "解密后的原始文本"
}
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| text | string | 是 | 要加密的文本 |
| password | string | 是 | 加密密码(至少8位) |
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| text | string | 是 | 喃字密文 |
| password | string | 是 | 解密密码 |
检查 API 服务是否正常运行。
获取可用的语音列表。
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| text | string | 是 | 要转换为语音的文本 |
| voice | string | 是 | 语音类型(如:zh-CN-XiaoyiNeural) |
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| text | string | 是 | 要转换为语音的文本 |
| voice | string | 是 | 语音类型 |
| rate | string | 否 | 语速(如:+0%) |
| volume | string | 否 | 音量(如:+0%) |
查看如何在您的应用中集成我们的 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();
// 使用 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();