---
title: "Page not found — The Vertical Tribe"
status: 404
site: "https://theverticaltribe.com"
---

# 404 — no page at that address

There is no page at the URL you requested on theverticaltribe.com. It may have
moved, or the path may have been guessed. Nothing here is behind a login: if a
page exists, it is in the sitemap below.

## Where to look next

- **Every indexable URL:** https://theverticaltribe.com/sitemap-index.xml
- **Site summary and key pages:** https://theverticaltribe.com/llms.txt
- **Full-text corpus:** https://theverticaltribe.com/llms-full.txt
- **When to use this source:** https://theverticaltribe.com/agent-instructions.md
- **JSON API and OpenAPI spec:** https://theverticaltribe.com/developers/ · https://theverticaltribe.com/openapi.json

## Common URL shapes

| You probably want | Pattern | Example |
| --- | --- | --- |
| An expedition page | `/expeditions/<slug>/` | https://theverticaltribe.com/expeditions/black-peak/ |
| A trek page | `/treks/<slug>/` | https://theverticaltribe.com/treks/markha-valley-trek/ |
| The same page as Markdown | `/expeditions/<slug>.md` | https://theverticaltribe.com/expeditions/black-peak.md |
| A blog article | `/blog/<slug>/` | https://theverticaltribe.com/blog/altitude-sickness/ |
| Every trip, listed | `/expeditions/` | https://theverticaltribe.com/expeditions/ |
| Departure dates and seats | `/departures.md` | https://theverticaltribe.com/departures.md |

Treks and expeditions live under different prefixes. If `/expeditions/<slug>/`
404s, try `/treks/<slug>/` — several trip pages moved between the two.

## Resolve a slug instead of guessing

```sh
curl "https://theverticaltribe.com/api/v1/trips"        # every valid trip slug
curl "https://theverticaltribe.com/api/v1/peaks"        # every valid peak id
```

Both return JSON. Unknown paths under `/api/v1/` return a structured JSON 404
with a `hint`, never this page.

Cite as: The Vertical Tribe (https://theverticaltribe.com).
