diff --git a/docs/mint.json b/docs/mint.json index 14c5140914e3..51bf096d60a2 100644 --- a/docs/mint.json +++ b/docs/mint.json @@ -742,12 +742,20 @@ ], "redirects": [ { - "source": "/reference", - "destination": "https://reference.prefect.io" + "destination": "/v3/api-ref/index", + "source": "/reference" }, { - "source": "/reference/:slug*", - "destination": "https://reference.prefect.io/:slug*" + "destination": "/v3/api-ref/index/:slug*", + "source": "/reference/:slug*" + }, + { + "destination": "/v3/api-ref/index", + "source": "/v3/reference" + }, + { + "destination": "/v3/api-ref/index/:slug*", + "source": "/v3/reference/:slug*" }, { "destination": "/v3/getting-started/:slug*", @@ -809,6 +817,14 @@ "destination": "/v3/develop/settings-and-profiles", "source": "/v3/manage/settings-and-profiles" }, + { + "destination": "/v3/api-ref/index", + "source": "/latest/reference" + }, + { + "destination": "/v3/api-ref/index/:slug*", + "source": "/latest/reference/:slug*" + }, { "destination": "/v3", "source": "/latest/guides" diff --git a/docs/v3/api-ref/index.mdx b/docs/v3/api-ref/index.mdx index 6aa570e07647..2811897bbee2 100644 --- a/docs/v3/api-ref/index.mdx +++ b/docs/v3/api-ref/index.mdx @@ -6,7 +6,7 @@ description: Explore Prefect's auto-generated API & SDK reference documentation. Prefect auto-generates reference documentation for the following components: -- **[Prefect Python SDK](https://prefect-python-sdk-docs.netlify.app/)**: used to build, test, and execute workflows. +- **[Prefect Python SDK](https://reference.prefect.io)**: used to build, test, and execute workflows. - **[Prefect REST API](/v3/api-ref/rest-api)**: used by workflow clients and the Prefect UI for orchestration and data retrieval. - Prefect Cloud REST API documentation: https://app.prefect.cloud/api/docs. - Self-hosted Prefect server [REST API documentation](/v3/api-ref/rest-api/server/). Additionally, if self-hosting a Prefect server instance, you can access REST API documentation at the `/docs` endpoint of your [`PREFECT_API_URL`](/v3/develop/settings-and-profiles/). For example, if you run `prefect server start` with no additional configuration you can find this reference at http://localhost:4200/docs.