Skip to main content
When Forest has no built-in connector for your system (a proprietary database, a legacy service, a third-party REST API), you can build your own datasource. There are two strategies, and the right one depends on what your source can do and how fresh the data needs to be.

Translation vs. Replication

Choosing a strategy

  • Reach for Translation when your source is a capable database or API that can filter, sort, and paginate efficiently, and you need every read to reflect the latest state.
  • Reach for Replication when the source API is slow, rate-limited, or hard to query, and a periodically synced copy is good enough. It is the simpler path and gives you Forest’s full feature set with no query translation.
Don’t see the datasource you need? Contact us to request a connector, or share your own through the Forest experimental repository.