/Knowledge/sources/honojs__hono/llms-full/honorequest-parsebody--eb6d640e9517.md
HonoRequest: parseBody() - hono-docs
HonoRequest: parseBody() Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt parsebody Summary Parse Reque...
HonoRequest: parseBody()
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#parsebody
Summary
Parse Request body of type multipart/form-data or application/x-www-form-urlencoded ```ts twoslash import { Hono } from 'hono' const app = new Hono() // ---cut--- app.post('/entry', async (c) => { const body = await c.req.parseBody()...
Content
Parse Request body of type multipart/form-data or application/x-www-form-urlencoded
import { Hono } from 'hono'
const app = new Hono()
// ---cut---
app.post('/entry', async (c) => {
const body = await c.req.parseBody()
// ...
})
parseBody() supports the following behaviors.
Single file
import { Context } from 'hono'
declare const c: Context
// ---cut---
const body = await c.req.parseBody()
const data = body['foo']
// ^?
body['foo'] is (string | File).
If multiple files are uploaded, the last one will be used.
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#parsebody",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / HonoRequest > parseBody()",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 574,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "HonoRequest: parseBody()",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}