SAX (Simple API for XML) is an event-based, streaming parser that reads XML documents sequentially in blocks. It doesn't build a tree structure like DOM parsers, and it's read-only - it cannot modify XML content. This makes it memory-efficient for large XML files.