Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.retab.com/llms.txt

Use this file to discover all available pages before exploring further.

Every Retab endpoint is available through a typed client library. All three are open-source under retab-dev/retab.

Install

pip install retab

Authenticate

Each SDK reads RETAB_API_KEY from the environment by default. Get a key from the dashboard settings.
export RETAB_API_KEY=sk_live_
from retab import Retab

client = Retab()  # uses RETAB_API_KEY
For a worked end-to-end extraction, see the quickstart in the introduction. Full method signatures live under API Reference.