Get information about one or more ingest pipelines. This API returns a local reference of the pipeline.
Query parameters
-
Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error.
Values are
-1or0.External documentation -
Return pipelines without their definitions
GET
/_ingest/pipeline
curl \
--request GET 'http://api.example.com/_ingest/pipeline'
Response examples (200)
A successful response for retrieving information about an ingest pipeline.
{
"my-pipeline-id" : {
"description" : "describe pipeline",
"version" : 123,
"processors" : [
{
"set" : {
"field" : "foo",
"value" : "bar"
}
}
],
"created_date" : "2024-01-01T12:00:00.000Z",
"created_date_millis" : 1704110400000,
"modified_date" : "2025-01-01T12:00:00.000Z",
"modified_date_millis" : 1735732800000
}
}