1// search/request-body.asciidoc:92
2
3[source, php]
4----
5$params = [
6    'index' => 'twitter',
7    'body' => [
8        'query' => [
9            'term' => [
10                'user' => 'kimchy',
11            ],
12        ],
13    ],
14];
15$response = $client->search($params);
16----
17