Fiddler's website has tons of information about how it works. Fiddler doesn't just "have" a HTTP proxy, it is a HTTP proxy with a bit of UI sprinkled on top. Applications use Fiddler because they pick up the WinINET/System Proxy settings, which Fiddler sets when it attaches and unsets when it detaches. The proper API for that is InternetSetOption, passing in a null handle and a structure that points at Fiddler's listening TCP/IP port (127.0.0.1).
Fiddler only uses the IPHelper APIs in order to map inbound connections back to their originating process ID, which is used for the "Process" column in the UI.