# Download quote PDF Download the PDF for a finalized quote. Explanation for special handling can be found [here](https://docs.stripe.com/quotes/overview.md#quote_pdf) ## Request ```python # Assumes that your http client is 'requests' resource = stripe.Quote.retrieve("{{QUOTE_ID}}") stream = resource.pdf() # Buffer all the content content = stream.io.read() ``` ### Response ```json {} ``` ## Returns The PDF file for the quote.