From 2197e2af19b18364680763f4695d06ba6aa433c1 Mon Sep 17 00:00:00 2001 From: Taylor Bantle Date: Mon, 6 Jul 2026 13:12:47 -0700 Subject: [PATCH] docs: mention the v2 API on the DoltHub product overview page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The overview page's API list only mentioned v1alpha1, CSV, and Webhooks — v2 was missing even though it's now the recommended API for new integrations. Co-Authored-By: Claude Sonnet 5 --- site/dolt/src/content/products/dolthub/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/site/dolt/src/content/products/dolthub/README.md b/site/dolt/src/content/products/dolthub/README.md index 3ff4582..6558fe4 100644 --- a/site/dolt/src/content/products/dolthub/README.md +++ b/site/dolt/src/content/products/dolthub/README.md @@ -20,11 +20,12 @@ This documentation will walk you through discovering data on DoltHub, cloning a ## DoltHub API -DoltHub exposes [three independent HTTP APIs](/products/dolthub/api/): +DoltHub exposes [several independent HTTP APIs](/products/dolthub/api/): -1. [v1alpha1 API](/products/dolthub/api/v1alpha1) — the resource-oriented surface for SQL, databases, branches, pull requests, releases, tags, file uploads, jobs, and the authenticated user. -2. [CSV](/products/dolthub/api/csv) — bulk export and import of table data as CSV. -3. [Webhooks](/products/dolthub/api/hooks) — HTTP callbacks for database events like push and pull request. +1. [v2 API](/products/dolthub/api/v2) — the current generation, an explicit, versioned, OpenAPI-defined contract for SQL, databases, branches, pull requests, releases, tags, file uploads, and the authenticated user. New integrations should start here. +2. [v1alpha1 API](/products/dolthub/api/v1alpha1) — the original API. Still supported, but new endpoints are being added to v2 only. +3. [CSV](/products/dolthub/api/csv) — bulk export and import of table data as CSV. +4. [Webhooks](/products/dolthub/api/hooks) — HTTP callbacks for database events like push and pull request. ## Guides