> For the complete documentation index, see [llms.txt](https://docs.filecoin.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.filecoin.io/provide-storage/pdp/about.md).

# About PDP

## What PDP is

Proof of Data Possession (PDP) is a cryptographic challenge-response protocol on Filecoin. It lets applications verify that a storage provider still holds specific data without downloading it.

The protocol works in four steps:

1. Providers compute Merkle trees over stored pieces.
2. The PDP contract generates randomized challenges using the drand beacon.
3. Providers submit Merkle inclusion proofs in response.
4. The contract verifies the proofs on-chain.

PDP is a core component of [Filecoin Onchain Cloud (FOC)](/build-on-filecoin/filecoin-onchain-cloud.md). Within FOC, the Filecoin Warm Storage Service (FWSS) uses PDP to verify provider availability and Filecoin Pay uses PDP results to adjust payments automatically.

## When to use PDP

* You need verifiable proof that your data is stored and available.
* You want on-chain storage guarantees as part of your application logic.

## What PDP replaces

PDP replaces older programmatic storage patterns built around direct Deal Client contracts and RaaS. Those workflows are preserved as [legacy reference material](/reference/general/legacy-content.md) only.

## Getting started

1. **Learn about FOC** at [Filecoin Onchain Cloud](/build-on-filecoin/filecoin-onchain-cloud.md).
2. **Run PDP infrastructure** with [Install and run PDP](/provide-storage/pdp/install-and-run-pdp.md).
3. **Build with the Synapse SDK** using the [FOC developer guides](https://docs.filecoin.cloud/developer-guides).
4. **Choose a storage path** via [Upload to Filecoin](/getting-started/how-storage-works/upload-to-filecoin.md).

## Resources

* [FOC documentation](https://docs.filecoin.cloud/)
* [PDP overview (FOC docs)](https://docs.filecoin.cloud/core-concepts/pdp-overview)
* [FWSS overview (FOC docs)](https://docs.filecoin.cloud/core-concepts/fwss-overview)
* [Synapse SDK repository](https://github.com/FilOzone/synapse-sdk)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.filecoin.io/provide-storage/pdp/about.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
