模型超市 pruna.ai
- 2026.06.11 本站已经支持 pruna.ai
- 官方网站
价格与计费
- 价格为 pruna.ai 官网的汇率 3
- 例如:官网
flux-dev0.005 美刀/张 ,本站 0.015 人民币/张 就是 150 积分/张 - 计费:视频按次、图片按张张
- 官方模型和价格
支持的模型
- 如果你在官网发觉有更多好玩的模型,请联系管理员 把模型加入进来
Pruna 模型
| 模型 | 类型 | 价格 |
|---|---|---|
| p-image | 图片生成 | $0.005 / 张 |
| p-image-lora | 图片生成(支持 LoRA) | $0.005 / 张 |
| p-image-trainer | 暂不支持 | $1.80 / 1000 Steps |
| p-image-edit | 图片编辑 | $0.010 / 张 |
| p-image-edit-lora | 图片编辑(支持 LoRA) | $0.010 / 张 |
| p-image-edit-trainer | 暂不支持 | $4.00 / 1000 Steps |
| p-video | 视频生成 | 按参数计费 |
| p-video-avatar | 暂不支持 | 按参数计费 |
| p-video-animate | 暂不支持 | 720P:$0.03/秒;1080P:$0.06/秒 |
| p-video-replace | 暂不支持 | 720P:$0.03/秒;1080P:$0.06/秒 |
| p-image-upscale | 图片超分放大 | 按参数计费 |
其他文生图模型
| 模型 | 类型 | 价格 |
|---|---|---|
| flux-dev | 图片生成 | $0.005 / 张 |
| flux-dev-lora | 图片编辑(支持 LoRA) | $0.01 / 张 |
| wan-image-small | 图片生成 | $0.005 / 张 |
| qwen-image | 图片生成 | $0.025 / 张 |
| qwen-image-fast | 图片生成(极速版) | $0.005 / 张 |
| z-image-turbo | 图片生成(极速版) | $0.005 / 张 |
| z-image-turbo-lora | 图片生成(支持 LoRA) | $0.008 / 张 |
| flux-2-klein-4b | 图片生成 | $0.0001 / 张 |
| qwen-image-edit-plus | 图片编辑 | $0.03 / 张 |
API
- 官方文档
- 将请求网址
https://api.pruna.ai替换为https://api.openai-hk.com/pruna
新建任务
shell
curl --request POST \
--url https://api.openai-hk.com/pruna/v1/predictions \
--header 'apikey: hk-your-apikey' \
--header 'Model: p-video' \
--data '{
"input": {
"prompt": "The camera slowly pushes in, the person turns their head and smiles, gentle wind moves their hair",
"duration": 3,
"resolution": "1080p"
}
}'curl --request POST \
--url https://api.openai-hk.com/pruna/v1/predictions \
--header 'apikey: hk-your-apikey' \
--header 'Model: p-video' \
--data '{
"input": {
"prompt": "The camera slowly pushes in, the person turns their head and smiles, gentle wind moves their hair",
"duration": 3,
"resolution": "1080p"
}
}'- 返回得到
id为下一个步骤的task_id
json
{
"id": "4j9a2jx8csrmw0cyppwakrhaxw",
"model": "p-video",
"input": {
"duration": 3,
"prompt": "The camera slowly pushes in, the person turns their head and smiles, gentle wind moves their hair",
"resolution": "1080p"
},
"get_url": "https://api.pruna.ai/v1/predictions/status/4j9a2jx8csrmw0cyppwakrhaxw"
}{
"id": "4j9a2jx8csrmw0cyppwakrhaxw",
"model": "p-video",
"input": {
"duration": 3,
"prompt": "The camera slowly pushes in, the person turns their head and smiles, gentle wind moves their hair",
"resolution": "1080p"
},
"get_url": "https://api.pruna.ai/v1/predictions/status/4j9a2jx8csrmw0cyppwakrhaxw"
}获取任务状态
get https://api.openai-hk.com/pruna/v1/predictions/status/{task_id}
shell
curl --request GET \
--url https://api.openai-hk.com/pruna/v1/predictions/status/4j9a2jx8csrmw0cyppwakrhaxw \
--header 'apikey: hk-your-key'curl --request GET \
--url https://api.openai-hk.com/pruna/v1/predictions/status/4j9a2jx8csrmw0cyppwakrhaxw \
--header 'apikey: hk-your-key'- 结果
json
{
"generation_url": "https://api.pruna.ai/v1/predictions/delivery/xezq/fqe3EIDDtntwrkBoXWleT8p8DR6ToQXYPliZi6u4fUneXPw1C/output.mp4",
"status": "succeeded"
}{
"generation_url": "https://api.pruna.ai/v1/predictions/delivery/xezq/fqe3EIDDtntwrkBoXWleT8p8DR6ToQXYPliZi6u4fUneXPw1C/output.mp4",
"status": "succeeded"
}
OpenAi-HK