The "proofs" produced by Z3 are not for human consumption.
An outdated version of the format is described in the paper: Proofs and Refutations, and Z3. The z3_api.h file has a long description of each one of the proof rules. The proof rule identifiers start with Z3_OP_PR. I am aware of two applications that use the Z3 proof objects. The following papers contain a lot of examples, and describe how the proof objects can be used.
1- Isabelle Interactive Theorem Prover: Z3 proofs are reconstructed inside of Isabelle using a trusted core. You can find several papers describing this work and the Z3 proof format at Sascha Bohme's homepage
2- Generation of interpolants
As pad said, unsat-cores are much simpler to use.
(get-unsat-core)seems to be what you want. Official example: rise4fun.com/Z3/smtc_core – pad Feb 2 at 11:04