> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zype.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Targets RTMP entries

Retrieve a list of target rtmp entries from your encoder

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Platform",
    "version": "1.0.0",
    "description": ""
  },
  "servers": [
    {
      "url": "https://api.zype.com/"
    }
  ],
  "security": [
    {
      "api_key": []
    }
  ],
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query"
      }
    }
  },
  "paths": {
    "/live/encoders/{encoder_name}/target_rtmp": {
      "get": {
        "summary": "List Targets RTMP entries",
        "description": "Retrieve a list of target rtmp entries from your encoder",
        "operationId": "listTargetRtmp",
        "tags": [
          "Encoders"
        ],
        "parameters": [
          {
            "name": "encoder_name",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": ""
          }
        ],
        "responses": {
          "200": {
            "description": "Response will be an array of target rtmp entries",
            "content": {
              "application/json": {
                "schema": {
                  "title": "EncoderTargetRtmpsResponse",
                  "type": "object",
                  "properties": {
                    "response": {
                      "type": "array",
                      "items": {
                        "title": "EncoderTargetRtmp",
                        "type": "object",
                        "required": [
                          "error"
                        ],
                        "properties": {
                          "enabled": {
                            "type": "boolean"
                          },
                          "host": {
                            "type": "string"
                          },
                          "port": {
                            "type": "integer"
                          },
                          "stream_name": {
                            "type": "string"
                          },
                          "application": {
                            "type": "string"
                          },
                          "entry_name": {
                            "type": "string"
                          },
                          "source_stream_name": {
                            "type": "string"
                          },
                          "username": {
                            "type": "string"
                          },
                          "password": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
```