Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.murmur.dev/llms.txt

Use this file to discover all available pages before exploring further.

Returns the murmur-ui dashboard URL for an agent. Use this to share a direct link to an agent’s detail view in the browser. Equivalent to murmur url agent in the CLI. All normal slug semantics apply: empty slug means self (on VMs), relative slugs resolve under the current agent, and absolute paths like /u/account/slug or /w/workspace/u/account/slug target any agent.

Parameters

NameTypeRequiredDescription
slugstringnoAgent task slug. Empty means self (on VMs). Use an absolute path like /w/workspace/u/account/slug to target any agent.
workspacestringnoWorkspace name. Overrides the session default.

Response

Returns the dashboard URL as a plain string.

Examples

Get own dashboard URL

{}
Response:
https://app.murmur.dev/agent/github%7Calice/backend/fix-auth

Get URL for another agent

{
  "slug": "fix-auth"
}

Get URL using absolute path

{
  "slug": "/w/backend/u/bob/api-refactor"
}

Errors

CodeMeaningWhat to do
INVALID_ARGUMENTCannot resolve slug — empty slug used off-VM, or invalid format.Provide a slug when running off-VM.
INTERNALDashboard URL not available (public_url missing from config).Contact your administrator.
UNAUTHENTICATEDIdentity token is missing or expired.Check credentials.