基础地址
https://rendery3d.com/api/enterprise/v1鉴权方式
使用 Bearer 方式,把 API Key 放到 Authorization 请求头中。
Authorization: Bearer r3d_live_xxxxxxxxxxxxxxxx_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx快速开始
先调用 /me 校验权限和额度,再调用生成类接口。
curl -X GET "https://rendery3d.com/api/enterprise/v1/me" -H "Authorization: Bearer $RENDERY3D_API_KEY"权限范围
usage:readamazon:listing-images:writeamazon:listing-copy:write
接口列表
GET /api/enterprise/v1/me
所需 scope: usage:read
Verify your key, account tier, subscription, and credit context.
POST /api/enterprise/v1/amazon/listing-images
所需 scope: amazon:listing-images:write
Main product endpoint for generating listing images from source photos.
POST /api/enterprise/v1/amazon/listing-copy
所需 scope: amazon:listing-copy:write
Generate Amazon-optimized listing copy in structured fields.
错误处理
400请求体无效401Key 缺失、无效或已撤销402额度不足403缺少权限范围或套餐权限429单 Key 触发限流500/502平台或模型提供方错误
安全检查表
- API Key 只放在服务端,使用密钥管理系统存储。
- 建立固定轮换周期,并在负责人变更时立即吊销旧 Key。
- 每个集成仅授予最小必要 scope。
- 附带
x-request-id以便追踪日志。