From e26e542888966c4975f5ed7fd8ea5e0ef3cd2744 Mon Sep 17 00:00:00 2001 From: "molecule-ai[bot]" <276602405+molecule-ai[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 11:42:15 +0000 Subject: [PATCH] fix(docs): correct platform and canvas domains in org-scoped API keys blog post platform.moleculeai.ai -> platform.moleculesai.app canvas.moleculeai.ai -> canvas.moleculesai.app Spotted during docs PR review cycle. --- docs/blog/2026-04-21-org-scoped-api-keys/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/blog/2026-04-21-org-scoped-api-keys/index.md b/docs/blog/2026-04-21-org-scoped-api-keys/index.md index 2559cc32..035b36a5 100644 --- a/docs/blog/2026-04-21-org-scoped-api-keys/index.md +++ b/docs/blog/2026-04-21-org-scoped-api-keys/index.md @@ -47,7 +47,7 @@ Org-scoped keys give each integration its own credential with its own identity. ### Mint a key via API ```bash -curl -X POST https://platform.moleculeai.ai/org/tokens \ +curl -X POST https://platform.moleculesai.app/org/tokens \ -H "Authorization: Bearer " \ -H "Content-Type: application/json" \ -d '{ @@ -70,7 +70,7 @@ The response contains the plaintext token — shown exactly once. Store it immed ### List active keys ```bash -curl https://platform.moleculeai.ai/org/tokens \ +curl https://platform.moleculesai.app/org/tokens \ -H "Authorization: Bearer " ``` @@ -79,7 +79,7 @@ Returns key IDs, names, prefixes, and creation timestamps — no plaintext. ### Revoke a key immediately ```bash -curl -X DELETE https://platform.moleculeai.ai/org/tokens/tok_01HXYZ... \ +curl -X DELETE https://platform.moleculesai.app/org/tokens/tok_01HXYZ... \ -H "Authorization: Bearer " ``` @@ -130,7 +130,7 @@ Navigate to **Settings → Org API Keys** in the Canvas to mint your first key, Revoke and rotate at any time from the same screen. -→ [Canvas → Settings → Org API Keys](https://canvas.moleculeai.ai) +→ [Canvas → Settings → Org API Keys](https://canvas.moleculesai.app) → [Platform API Reference](/docs/api-protocol/platform-api) ---