文本生成 3D API
文本生成 3D API 是一项功能,允许你将 Meshy 的文本生成 3D 能力集成到你自己的应用程序中。在本节中,你将找到开始使用该 API 所需的全部信息。
文本生成 3D 采用两步工作流程。首先,创建一个预览任务(mode: "preview")生成不带贴图的 3D 网格,以便评估模型形状。然后,将已完成的预览任务 ID 传入精细化任务(mode: "refine")来为网格添加贴图。两个步骤使用同一个接口。
创建文本生成3D预览任务
该接口用于创建文本生成3D预览任务,根据文本提示生成不带贴图的 3D 网格(仅几何体)。这是两步工作流程的第一步。预览任务成功后,使用返回的任务 ID 创建精细化任务来添加贴图。完整响应结构请参考文本生成3D任务对象。
参数
- Name
- mode
- Type
- string
- 必选
- Description
创建预览任务时,该字段应设置为 "preview"。
- Name
- prompt
- Type
- string
- 必选
- Description
描述 3D 模型是什么类型的物体。最大 600 个字符。
- Name
- model_type
- Type
- string
- 默认值 standard
- Description
指定3D网格生成的类型。
可选值:
standard:常规高细节3D网格生成。lowpoly:生成优化后多边形更简洁的低面数网格。
当选择
lowpoly时,ai_model、topology、target_polycount、should_remesh将被忽略。
- Name
- ai_model
- Type
- string
- 默认值 latest
- Description
所用模型的 ID。可选值:
meshy-5、meshy-6、latest(Meshy 6)。
- Name
- should_remesh
- Type
- boolean
- 默认值 false (meshy-6), true (others)
- Description
控制是否启用重建网格阶段。当设置为
false时,API 将直接返回最高精度的三角网格。
should_remesh = true- Name
- topology
- Type
- string
- 默认值 triangle
- Description
指定生成模型的拓扑结构。
可选值:
quad:生成以四边形为主的网格triangle:生成简化的三角网格
- Name
- target_polycount
- Type
- integer
- 默认值 30,000
- Description
指定生成模型的目标面数。实际面数可能会因几何复杂度而有所偏差。
有效取值范围根据用户等级不同而变化:
- 100 到 300,000(含)
- Name
- decimation_mode
- Type
- integer
- Description
通过设置面数级别启用自适应减面。设置后,
target_polycount将被忽略。可选值:
1:自适应——超高面数。2:自适应——高面数。3:自适应——中等面数。4:自适应——低面数。
- Name
- symmetry_mode
- Type
- string
- 默认值 auto
- Description
symmetry_mode字段控制模型生成过程中的对称性行为。可选值:
off:关闭对称auto:根据输入几何自动判断并应用对称on:强制对称生成
- Name
- pose_mode
- Type
- string
- 默认值 ""
- Description
指定生成模型的姿态模式。
可选值:
a-pose:生成 A Pose 的模型。t-pose:生成 T Pose 的模型。""(空字符串):不应用特定姿态。
- Name
- is_a_t_pose
- Type
- boolean
- ⚠ 已弃用
- 默认值 false
- Description
请使用
pose_mode代替。是否生成 A/T 姿态的模型。
- Name
- art_style
- Type
- string
- ⚠ 已弃用
- 默认值 realistic
- Description
Meshy-6 不支持此参数。使用 Meshy-6 时会忽略
art_style,某些组合可能导致错误。可用值:realistic、sculpture。使用 Sculpture 风格时,
enable_pbr应设置为false,因为 Sculpture 风格会生成自己的 PBR 贴图。
- Name
- moderation
- Type
- boolean
- 默认值 false
- Description
当设置为
true时,输入内容将自动进行潜在有害内容筛查。如果检测到有害内容,任务将不会进入生成阶段。prompt中的文本将被筛查。
- Name
- target_formats
- Type
- string[]
- Description
指定输出中包含的 3D 文件格式。仅会生成并返回所请求的格式,可减少任务完成时间。省略时,将包含所有支持的格式。
可选值:
glb、obj、fbx、stl、usdz、3mf未指定时,除
3mf外的所有格式均会生成。3mf仅在明确指定时才会包含。
- Name
- auto_size
- Type
- boolean
- 默认值 false
- Description
当设置为
true时,服务使用 AI 视觉自动估算物体的真实高度并相应调整模型大小。除非显式设置了origin_at,否则原点将默认为bottom。
auto_size = true- Name
- origin_at
- Type
- string
- 默认值 bottom
- Description
当
auto_size启用时的原点位置。可选值:
bottom、center。
返回值
响应的 result 字段包含新建 Text to 3D 任务的 id。
失败模式
- Name
400 - Bad Request- Description
请求不合法。常见原因:
- 缺少参数:必需参数(如
prompt、mode)未提供。 - 参数无效:
art_style不在允许的取值范围内。 - 提示词过长:
prompt超出字符数限制。
- 缺少参数:必需参数(如
- Name
401 - Unauthorized- Description
认证失败。请检查您的 API 密钥。
- Name
402 - Payment Required- Description
积分不足,无法执行此任务。
- Name
429 - Too Many Requests- Description
您已超出请求频率限制。
请求
# 仅使用必需参数的简单预览
curl https://api.meshy.ai/openapi/v2/text-to-3d \
-H 'Authorization: Bearer ${YOUR_API_KEY}' \
-H 'Content-Type: application/json' \
-d '{
"mode": "preview",
"prompt": "a monster mask"
}'
# 启用重建网格和 A-pose 的预览
curl https://api.meshy.ai/openapi/v2/text-to-3d \
-H 'Authorization: Bearer ${YOUR_API_KEY}' \
-H 'Content-Type: application/json' \
-d '{
"mode": "preview",
"prompt": "a futuristic robot warrior",
"should_remesh": true,
"target_polycount": 100000,
"pose_mode": "a-pose",
"target_formats": ["glb"]
}'
响应
{
"result": "018a210d-8ba4-705c-b111-1f1776f7f578"
}
创建文本生成3D精细化任务
该接口用于创建文本生成3D精细化任务,为已完成的预览网格添加贴图。你需要提供来自已成功预览任务的 preview_task_id。这是两步工作流程的第二步。
参数
- Name
- mode
- Type
- string
- 必选
- Description
创建精细化任务时,该字段应设置为 "refine"。
- Name
- preview_task_id
- Type
- string
- 必选
- Description
对应的预览任务 id。
给定的预览任务状态必须为
SUCCEEDED。
- Name
- enable_pbr
- Type
- boolean
- 默认值 false
- Description
生成 PBR 贴图(金属度、粗糙度、法线)以及基础色贴图。当
ai_model为meshy-6或latest时,还会额外生成自发光贴图。
- Name
- hd_texture
- Type
- boolean
- 默认值 false
- Description
以 4K(4096×4096)分辨率生成基础色贴图,获得更高细节。
仅在
ai_model为meshy-6或latest时支持。PBR 贴图始终以 2K 分辨率生成。
- Name
- texture_prompt
- Type
- string
- Description
提供额外的文本提示以引导贴图过程。最大 600 个字符。
- Name
- texture_image_url
- Type
- string
- Description
提供 2D 图片以引导贴图过程。目前支持
.jpg、.jpeg和.png格式。提供图片有两种方式:
- 公网可访问的 URL:可从公网访问的图片链接
- Data URI:图片的 base64 编码 Data URI。例如:
data:image/jpeg;base64;<your base64-encoded image data>
如果原始资产与上传图片在几何上有较大差异,图像贴图效果可能不佳。
texture_image_url和texture_prompt只能二选一。如果都提供,则默认使用texture_prompt进行贴图。
- Name
- ai_model
- Type
- string
- 默认值 latest
- Description
用于优化的模型ID。可选值:
meshy-5、meshy-6、latest(Meshy 6)。
- Name
- moderation
- Type
- boolean
- 默认值 false
- Description
当设置为
true时,输入内容将自动进行潜在有害内容筛查。如果检测到有害内容,任务将不会进入生成阶段。texture_prompt中的文本和texture_image_url中的图片都将被筛查。
- Name
- remove_lighting
- Type
- boolean
- 默认值 true
- Description
移除基础色贴图中的高光和阴影,生成更纯净的效果,在自定义光照设置下表现更佳。
仅当
ai_model为meshy-6或latest时支持。
- Name
- target_formats
- Type
- string[]
- Description
指定输出中包含的 3D 文件格式。仅会生成并返回所请求的格式,可减少任务完成时间。省略时,将包含所有支持的格式。
可选值:
glb、obj、fbx、stl、usdz、3mf未指定时,除
3mf外的所有格式均会生成。3mf仅在明确指定时才会包含。
- Name
- auto_size
- Type
- boolean
- 默认值 false
- Description
当设置为
true时,服务使用 AI 视觉自动估算物体的真实高度并相应调整模型大小。除非显式设置了origin_at,否则原点将默认为bottom。
auto_size = true- Name
- origin_at
- Type
- string
- 默认值 bottom
- Description
当
auto_size启用时的原点位置。可选值:
bottom、center。
返回值
响应的 result 字段包含新建 Text to 3D 任务的 id。
失败模式
- Name
400 - Bad Request- Description
请求不合法。常见原因:
- 任务 ID 无效:
preview_task_id无效或不存在。 - 任务未就绪:预览任务尚未成功完成。
- 模型不匹配:预览任务的 AI 模型与请求的精细化模型不兼容。
- 任务 ID 无效:
- Name
401 - Unauthorized- Description
认证失败。请检查您的 API 密钥。
- Name
402 - Payment Required- Description
积分不足,无法执行此任务。
- Name
404 - Not Found- Description
未找到
preview_task_id指定的预览任务。
- Name
429 - Too Many Requests- Description
您已超出请求频率限制。
请求
# 基本精细化任务
curl https://api.meshy.ai/openapi/v2/text-to-3d \
-H 'Authorization: Bearer ${YOUR_API_KEY}' \
-H 'Content-Type: application/json' \
-d '{
"mode": "refine",
"preview_task_id": "018a210d-8ba4-705c-b111-1f1776f7f578",
"enable_pbr": true
}'
# 启用自动尺寸和 GLB 格式的精细化
curl https://api.meshy.ai/openapi/v2/text-to-3d \
-H 'Authorization: Bearer ${YOUR_API_KEY}' \
-H 'Content-Type: application/json' \
-d '{
"mode": "refine",
"preview_task_id": "018a210d-8ba4-705c-b111-1f1776f7f578",
"target_formats": ["glb"],
"auto_size": true
}'
响应
{
"result": "018a210d-8ba4-705c-b111-1f1776f7f578"
}
获取文本生成3D任务
该接口允许你通过有效的任务 id 获取文本生成3D任务。
请参考 文本生成3D任务对象 查看任务对象包含的属性。
该接口同时适用于预览和精细化任务。
参数
- Name
- id
- Type
- path
- Description
要获取的文本生成3D任务的唯一标识符。
返回值
响应包含文本生成3D任务对象。详情请查看 文本生成3D任务对象 部分。
示例
| 模式 | 示例模型 |
|---|---|
| 预览 | ![]() |
| 精细化 | ![]() |
请求
curl https://api.meshy.ai/openapi/v2/text-to-3d/018a210d-8ba4-705c-b111-1f1776f7f578 \
-H "Authorization: Bearer ${YOUR_API_KEY}"
响应
{
"id": "018a210d-8ba4-705c-b111-1f1776f7f578",
"type": "text-to-3d-preview",
"model_urls": {
"glb": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.glb?Expires=***",
"fbx": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.fbx?Expires=***",
"obj": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.obj?Expires=***",
"mtl": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.mtl?Expires=***",
"usdz": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.usdz?Expires=***",
"stl": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.stl?Expires=***"
},
"thumbnail_url": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/preview.png?Expires=***",
"prompt": "a monster mask",
"progress": 100,
"started_at": 1692771667037,
"created_at": 1692771650657,
"finished_at": 1692771669037,
"status": "SUCCEEDED",
"texture_urls": [
{
"base_color": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0.png?Expires=***"
}
],
"preceding_tasks": 0,
"task_error": {
"message": ""
},
"consumed_credits": 20
}
删除文本转 3D 任务
此端点可永久删除文本转3D任务,包括所有关联的模型和数据。此操作不可逆。
路径参数
- Name
- id
- Type
- path
- Description
要删除的文本转3D任务的ID。
返回值
成功则返回 200 OK。
请求
curl --request DELETE \
--url https://api.meshy.ai/openapi/v2/text-to-3d/018a210d-8ba4-705c-b111-1f1776f7f578 \
-H "Authorization: Bearer ${YOUR_API_KEY}"
响应
// 成功则返回 200 Ok。
获取文本生成3D任务列表
该接口用于获取文本生成3D任务列表。
参数
- Name
- page_num
- Type
- integer
- 默认值 1
- Description
分页页码。
- Name
- page_size
- Type
- integer
- 默认值 10
- Description
分页大小限制。最大允许
50条。
- Name
- sort_by
- Type
- string
- Description
排序字段。
可选值:
+created_at:按创建时间升序排列。-created_at:按创建时间降序排列。
返回值
返回 Text to 3D 任务对象 的分页列表。
请求
curl https://api.meshy.ai/openapi/v2/text-to-3d?page_size=10 \
-H "Authorization: Bearer ${YOUR_API_KEY}"
响应
[
{
"id": "018a210d-8ba4-705c-b111-1f1776f7f578",
"type": "text-to-3d-preview",
"model_urls": {
"glb": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.glb?Expires=***",
"fbx": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.fbx?Expires=***",
"obj": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.obj?Expires=***",
"mtl": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.mtl?Expires=***",
"usdz": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.usdz?Expires=***"
},
"thumbnail_url": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/preview.png?Expires=***",
"prompt": "a monster mask",
"progress": 100,
"started_at": 1692771667037,
"created_at": 1692771650657,
"finished_at": 1692771669037,
"status": "SUCCEEDED",
"texture_urls": [
{
"base_color": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0.png?Expires=***"
}
],
"preceding_tasks": 0,
"task_error": {
"message": ""
},
"consumed_credits": 20
}
]
流式获取文本生成3D任务
该接口通过 Server-Sent Events (SSE) 实时流式返回文本生成3D任务的进度更新。
参数
- Name
- id
- Type
- path
- Description
要流式获取的文本生成3D任务的唯一标识符。
返回值
返回 文本生成3D任务对象 的 SSE 实时流。
对于 PENDING 或 IN_PROGRESS 状态的任务,响应流仅包含必要的 progress 和 status 字段。
请求
curl -N https://api.meshy.ai/openapi/v2/text-to-3d/018a210d-8ba4-705c-b111-1f1776f7f578/stream \
-H "Authorization: Bearer ${YOUR_API_KEY}"
响应流
// 错误事件示例
event: error
data: {
"status_code": 404,
"message": "Task not found"
}
// 消息事件示例,展示任务进度。
// 对于 PENDING 或 IN_PROGRESS 状态的任务,响应流不会包含所有字段。
event: message
data: {
"id": "018a210d-8ba4-705c-b111-1f1776f7f578",
"progress": 0,
"status": "PENDING"
}
event: message
data: {
"id": "018a210d-8ba4-705c-b111-1f1776f7f578",
"progress": 50,
"status": "IN_PROGRESS"
}
event: message
data: {
"id": "018a210d-8ba4-705c-b111-1f1776f7f578",
"type": "text-to-3d-preview",
"progress": 100,
"status": "SUCCEEDED",
"created_at": 1692771650657,
"started_at": 1692771667037,
"finished_at": 1692771669037,
"model_urls": {
"glb": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.glb?Expires=***"
},
"texture_urls": [
{
"base_color": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0.png?Expires=***",
"metallic": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0_metallic.png?Expires=XXX",
"normal": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0_normal.png?Expires=XXX",
"roughness": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0_roughness.png?Expires=XXX",
"emission": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0_emission.png?Expires=XXX"
}
],
"preceding_tasks": 0,
"task_error": {
"message": ""
},
"consumed_credits": 20
}
文本生成3D任务对象
文本生成3D任务对象是 Meshy 用于追踪从文本输入生成 3D 模型的工作单元。文本生成3D API 分为两个阶段:preview(预览)和 refine(精细化)。预览阶段用于生成仅有网格的 3D 模型,精细化阶段则基于预览结果生成带贴图的 3D 模型。
该对象包含以下属性:
属性
- Name
- id
- Type
- string
- Description
任务的唯一标识符。虽然我们采用 k-sortable UUID 作为任务 id 的实现细节,但你不应对 id 格式做任何假设。
- Name
- type
- Type
- string
- Description
文本生成3D任务的类型。返回值为
text-to-3d-preview(预览阶段任务)或text-to-3d-refine(精细化阶段任务)。
- Name
- model_urls
- Type
- object
- Description
Meshy 生成的带贴图 3D 模型文件的可下载链接。如果某种格式未生成,则不会返回该属性。
- Name
glb- Type
- string
- Description
GLB 文件的可下载链接。
- Name
fbx- Type
- string
- Description
FBX 文件的可下载链接。
- Name
usdz- Type
- string
- Description
USDZ 文件的可下载链接。
- Name
obj- Type
- string
- Description
OBJ 文件的可下载链接。
- Name
mtl- Type
- string
- Description
MTL 文件的可下载链接。
- Name
stl- Type
- string
- Description
STL 文件的可下载链接。
- Name
3mf- Type
- string
- Description
3MF 文件的可下载链接。仅在通过
target_formats请求3mf时返回。
- Name
- prompt
- Type
- string
- Description
创建任务时使用的原始
prompt。
- Name
- negative_prompt
- Type
- string
- ⚠ 已弃用
- Description
为兼容性保留,对生成模型无实际影响。
- Name
- art_style
- Type
- string
- ⚠ 已弃用
- Description
创建预览任务时使用的原始
art_style。Meshy-6 不再支持。
- Name
- texture_richness
- Type
- string
- ⚠ 已弃用
- Description
为兼容性保留,对生成模型无实际影响。
- Name
- texture_prompt
- Type
- string
- Description
精细化阶段用于引导贴图过程的额外文本提示。
- Name
- texture_image_url
- Type
- string
- Description
用于引导贴图过程的图片下载链接。
- Name
- thumbnail_url
- Type
- string
- Description
模型文件缩略图的可下载链接。
- Name
- video_url
- Type
- string
- ⚠ 已弃用
- Description
预览视频的可下载链接。将在后续版本移除。
- Name
- progress
- Type
- integer
- Description
任务进度。如果任务尚未开始,该值为
0。任务成功后为100。
- Name
- started_at
- Type
- timestamp
- Description
任务开始时间的时间戳(毫秒)。如果任务尚未开始,该值为
0。时间戳表示自 1970 年 1 月 1 日 UTC 起经过的毫秒数,遵循 RFC 3339
标准。例如,2023 年 9 月 1 日 12:00:00 GMT 表示为1693569600000。Meshy API 中所有时间戳均采用此标准。
- Name
- created_at
- Type
- timestamp
- Description
任务创建时间的时间戳(毫秒)。
- Name
- finished_at
- Type
- timestamp
- Description
任务完成时间的时间戳(毫秒)。如果任务尚未完成,该值为
0。
- Name
- status
- Type
- string
- Description
任务状态。可能值为
PENDING、IN_PROGRESS、SUCCEEDED、FAILED、CANCELED。
- Name
- texture_urls
- Type
- array
- Description
任务生成的贴图 URL 对象数组。通常只包含一个贴图 URL 对象。每个贴图 URL 包含以下属性:
- Name
base_color- Type
- string
- Description
基础色贴图的可下载链接。
- Name
metallic- Type
- string
- Description
金属度贴图的可下载链接。
如果任务创建时
enable_pbr: false,则不会返回该属性。
- Name
normal- Type
- string
- Description
法线贴图的可下载链接。
如果任务创建时
enable_pbr: false,则不会返回该属性。
- Name
roughness- Type
- string
- Description
粗糙度贴图的可下载链接。
如果任务创建时
enable_pbr: false,则不会返回该属性。
- Name
emission- Type
- string
- Description
自发光贴图的可下载链接。
如果任务创建时
enable_pbr: false,或ai_model为meshy-5,则不会返回该属性。
- Name
- preceding_tasks
- Type
- integer
- Description
前置任务数量。
仅当任务状态为
PENDING时,该字段有意义。
- Name
- task_error
- Type
- object
- Description
任务失败时包含错误信息的对象。若任务成功,
message字段应为空。详情请参阅 Errors。- Name
message- Type
- string
- Description
详细错误信息。
- Name
- consumed_credits
- Type
- integer
- Description
该任务消耗的积分数。当任务状态为
PENDING、IN_PROGRESS或SUCCEEDED时返回。对于FAILED任务返回0(失败时积分会被退还)。
文本生成3D任务对象示例
{
"id": "018a210d-8ba4-705c-b111-1f1776f7f578",
"type": "text-to-3d-preview",
"model_urls": {
"glb": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.glb?Expires=***",
"fbx": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.fbx?Expires=***",
"usdz": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.usdz?Expires=***",
"obj": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.obj?Expires=***",
"mtl": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.mtl?Expires=***",
"stl": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/model.stl?Expires=***"
},
"prompt": "a monster mask",
"texture_prompt": "green slimy skin with scales and warts",
"texture_image_url": "",
"thumbnail_url": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/preview.png?Expires=***",
"progress": 100,
"seed": 1234,
"started_at": 1692771667037,
"created_at": 1692771650657,
"finished_at": 1692771669037,
"status": "SUCCEEDED",
"texture_urls": [
{
"base_color": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0.png?Expires=***",
"metallic": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0_metallic.png?Expires=XXX",
"normal": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0_normal.png?Expires=XXX",
"roughness": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0_roughness.png?Expires=XXX",
"emission": "https://assets.meshy.ai/***/tasks/018a210d-8ba4-705c-b111-1f1776f7f578/output/texture_0_emission.png?Expires=XXX"
}
],
"preceding_tasks": 0,
"task_error": {
"message": ""
},
"consumed_credits": 20
}

