/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-matchedroutes-acd6dd810878-matchedroutes-s0732-c0000.md
`matchedRoutes()` - hono-docs
matchedRoutes() Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt matchedroutes Summary Returns an...
matchedRoutes()
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#matchedroutes
Summary
Returns an array of all routes that matched the current request, including middleware. ```ts app.all('/api/*', (c, next) => { console.log('API middleware') return next() }) app.get('/api/users/:id', (c) => { const routes = matchedRoutes(...
Content
Returns an array of all routes that matched the current request, including middleware.
app.all('/api/*', (c, next) => {
console.log('API middleware')
return next()
})
app.get('/api/users/:id', (c) => {
const routes = matchedRoutes(c)
// Returns: [
// { method: 'ALL', path: '/api/*', handler: [Function] },
// { method: 'GET', path: '/api/users/:id', handler: [Function] }
// ]
return c.json({ routes: routes.length })
})