2015-06-24 23:27:19 +02:00
|
|
|
[[java-docs-get]]
|
|
|
|
=== Get API
|
2013-08-29 01:24:34 +02:00
|
|
|
|
|
|
|
The get API allows to get a typed JSON document from the index based on
|
|
|
|
its id. The following example gets a JSON document from an index called
|
2020-09-08 09:49:03 -04:00
|
|
|
twitter, under a type called `_doc`, with id valued 1:
|
2013-08-29 01:24:34 +02:00
|
|
|
|
|
|
|
[source,java]
|
|
|
|
--------------------------------------------------
|
2018-10-22 11:54:04 -07:00
|
|
|
GetResponse response = client.prepareGet("twitter", "_doc", "1").get();
|
2013-08-29 01:24:34 +02:00
|
|
|
--------------------------------------------------
|
|
|
|
|
2013-09-30 13:26:14 +02:00
|
|
|
For more information on the get operation, check out the REST
|
2013-09-03 16:15:28 +02:00
|
|
|
{ref}/docs-get.html[get] docs.
|