Skip to main content
Available in arize-phoenix 14.2.0+ Phoenix now resolves human-readable identifiers to internal pages via redirect URLs. Navigate to /redirects/projects/{project_name} and Phoenix looks up the project by name and redirects to its page — no internal ID required. This makes it straightforward to construct stable, shareable links from identifiers you already use in code.

Project URLs by Name

Use the same project name you set in PHOENIX_PROJECT_NAME or your register() call:
https://my-phoenix.example.com/redirects/projects/default
Useful for bookmarks, runbook links, dashboards, and CI/CD integrations where the project name is known but the internal Phoenix ID is not.

All Supported Redirect Patterns

ResourceURL PatternIdentifier
Project/redirects/projects/{project_name}Project name (e.g. default)
Trace/redirects/traces/{trace_id}OpenTelemetry trace ID
Span/redirects/spans/{span_id}OpenTelemetry span ID
Session/redirects/sessions/{session_id}Session ID
Prompt tag/redirects/prompts/{prompt_id}/tags/{tag_name}Prompt global ID + tag name
Names with special characters (spaces, etc.) should be URL-encoded: /redirects/projects/my%20project.

Construct Shareable URLs

Full reference for all Phoenix redirect URL patterns.