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

# Track Proof

> The Merkle proof material for verifying a track against its on-chain commitments.

Returns the proof material a client needs to verify a track against its on-chain commitments, without trusting the gateway.

This is what powers verified reads in the SDK: fetch data and proof together, check the proof against chain state, and reject anything that doesn't verify. Every track is provable this way because its commitment lives in the tape's on-chain Merkle tree ([why tracks are provable](/protocol/architecture/tracks)).

Most readers never call this directly. The SDK's verified-read mode does the fetching and checking in one step ([verified reads](/sdks/reading)), and like the rest of the catalog family, the raw response arrives in the SDK's binary encoding ([conventions](/apis/gateway)).

From Rust, `get_track_proof` fetches the proof and `verify` checks bytes against the commitment ([reading](/sdks/reading)).
