While Reducto has a lot of capabilities, the most basic workflow is uploading a document and getting the parsed output for it. The easiest way to access our APIs is through our SDKs, available in Python and Node.js/Javascript.

Need help finding your API Key? Find them in your account at app.reducto.ai or this link here.

1

Install the SDK

pip install reductoai
2

Parse a Document

from pathlib import Path
from reducto import Reducto

client = Reducto()
upload = client.upload(file=Path("sample.pdf"))
result = client.parse.run(document_url=upload)

print(result)