Minglyph
/
MINGLYPH API / V1

Meaning-led type, inside your product.把有寓意的字形,接入你的产品。

Use one generation core across the web and API. Every key is scoped to a workspace; every generation is private by default and idempotent.网页与 API 共用同一套生成核心。每个 Key 绑定一个工作区;每次生成默认私有,并支持幂等重试。

Create an API key创建 API KeyRead the API reference阅读 API 文档
curl https://minglyph.com/v1/generations \
  -H "Authorization: Bearer mg_live_…" \
  -H "Idempotency-Key: launch-001" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "FLOW",
    "meaning": "Every part carries the next",
    "style": "editorial-line",
    "visibility": "private"
  }'
01

Private by default默认私有

Keys, jobs, assets, credits, and reuse stay inside one workspace.Key、任务、资产、Credits 与复用都严格限定在同一工作区。

02

Safe to retry安全重试

Idempotency keys prevent duplicate jobs and duplicate credit charges.幂等 Key 防止重复任务和重复扣费。

03

Stable recipes稳定配方

Prompt and recipe versions preserve style behavior over time.Prompt 与配方版本会长期保留风格行为。

ONE CORE / THREE STEPS
  1. 1Create a generation创建生成任务POST /v1/generations
  2. 2Read its status查询任务状态GET /v1/generations/:id
  3. 3Fetch the private asset读取私有资产GET /v1/assets/:id