Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/data/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ There are several products to choose from when interacting with the Stellar Netw

Use the summaries below to determine which types of data tools are right for your use case.

## Compare Data Products

SDF maintains four data products. Two are APIs and two are for bulk historical data, so start by picking the row that matches how you want to consume the data.

| | [RPC](./apis/rpc/README.mdx) | [Horizon](./apis/horizon/README.mdx) | [Hubble](./analytics/hubble/README.mdx) | [Galexie](./indexers/build-your-own/galexie/README.mdx) |
| --- | --- | --- | --- | --- |
| Type | API | API | Data warehouse | Ledger export tool |
| Interface | JSON-RPC | REST | SQL (BigQuery) | XDR files in your data lake |
| Real-time data | ✅ | ✅ | ❌ | ❌ |
| Historical data | About 7 days | 1 year\* | Full | Full |
Comment thread
hunterpack marked this conversation as resolved.
| Smart contract data | ✅ | ❌ | ✅ | ✅ |
| Transaction submission | ✅ | ✅ | ❌ | ❌ |
| Transaction simulation | ✅ | ❌ | ❌ | ❌ |
| Curated and parsed data | ❌ | ✅ | ✅ | ❌ |
| Hosted by SDF | Testnet and futurenet | Mainnet, testnet, and futurenet\* | Public BigQuery dataset | None\*\* |
Comment thread
hunterpack marked this conversation as resolved.

\*_The SDF-hosted Horizon keeps one year of history and is nearing end-of-life in favor of RPC. A self-hosted Horizon can serve full history, but Hubble or Galexie are the recommended tools for that._

\*\*_SDF does not host a Galexie data lake, but [several providers](./indexers/build-your-own/galexie/providers.mdx) make public ones available._

The [Ingest SDK](./indexers/build-your-own/ingest-sdk/README.mdx) and [Processors](./indexers/build-your-own/processors/README.mdx) are libraries for building on top of these products rather than data products themselves. Third-party APIs, indexers, and analytics platforms are listed on their own pages in each section below.

## [Analytics](./analytics/README.mdx)

Explore and analyze Stellar network data to uncover trends, track activity, and generate insights for decision-making and reporting.
Expand Down
2 changes: 1 addition & 1 deletion docs/data/apis/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Learn about the services that provide access to real-time Stellar network data
| Transaction Simulation | ✅ | ❌ |
| Curated and Parsed Data | ❌ | ✅ |

\*_Please note that Horizon can provide full historical data but is not the recommended tool for full historical data access. Please use [Hubble](../analytics/hubble/README.mdx) or [Galexie](../indexers/build-your-own/galexie/README.mdx) instead._
\*_Horizon can provide full historical data if you run your own instance, but it is not the recommended tool for that. Use [Hubble](../analytics/hubble/README.mdx) or [Galexie](../indexers/build-your-own/galexie/README.mdx) instead. For a side-by-side comparison of all four SDF data products, see [Compare Data Products](../README.mdx#compare-data-products)._

## [RPC](./rpc/README.mdx)

Expand Down
Loading