/Knowledge/sources/honojs__hono/llms-full/rpc-not-found--part-02--5b37330b03ff.md
RPC: Not Found (part 02) - hono-docs
RPC: Not Found (part 02) Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt not found Summary ts export c...
RPC: Not Found (part 02)
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#not-found
Summary
## Content
```ts
export const routes = new Hono().get(
'/posts',
zValidator(
'query',
z.object({
id: z.string(),
})
),
async (c) => {
const { id } = c.req.valid('query')
const post = await getPost(id)
if (!post) {
return c.json({ error: 'not found' }, 404) // Specify 404
}
return c.json({ post }, 200) // Specify 200
}
)
Metadata
{
"chunk_index": 1,
"citation": "https://hono.dev/llms-full.txt#not-found",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / RPC > Not Found (2)",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 52,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "RPC: Not Found (part 02)",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}