<li>The <ahref="#producerapi">Producer</a> API allows applications to send streams of data to topics in the Kafka cluster.
<li>The <ahref="#consumerapi">Consumer</a> API allows applications to read streams of data from topics in the Kafka cluster.
<li>The <ahref="#streamsapi">Streams</a> API allows transforming streams of data from input topics to output topics.
<li>The <ahref="#producerapi">Connect</a> API allows implementing connectors that continually pull from some source system or application into Kafka or push from Kafka into some sink system or application.
</ol>
Kafka exposes all its functionality over a language independent protocol which has clients available in many programming languages. However only the Java clients are maintained as part of the main Kafka project, the others are available as independent open source projects. A list of non-Java clients is available <ahref="https://cwiki.apache.org/confluence/display/KAFKA/Clients">here</a>.
The Connect API allows implementing connectors that continually pull from some source data system into Kafka or push from Kafka into some sink data system.
<p>
Many users of Connect won't need to use this API directly, though, they can use pre-built connectors without needing to write any code. Additional information on using Connect is available <ahref="/documentation.html#connect">here</a>.
Those who want to implement custom connectors can see the <ahref="/0100/javadoc/index.html?org/apache/kafka/connect"title="Kafka 0.10.0 Javadoc">javadoc</a>.
A more limited legacy producer and consumer api is also included in Kafka. These old Scala APIs are deprecated and only still available for compatability purposes. Information on them can be found here <ahref="/081/documentation.html#producerapi"title="Kafka 0.8.1 Docs">