> ## Documentation Index
> Fetch the complete documentation index at: https://arizeai-433a7140.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 04.10.2026 Shareable Project URLs

> Link to Phoenix projects by name without looking up internal IDs.

**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

| Resource   | URL Pattern                                      | Identifier                    |
| ---------- | ------------------------------------------------ | ----------------------------- |
| 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`.

<CardGroup cols={2}>
  <Card title="Construct Shareable URLs" icon="link" href="/docs/phoenix/tracing/how-to-tracing/advanced/constructing-urls">
    Full reference for all Phoenix redirect URL patterns.
  </Card>
</CardGroup>
