diff --git a/integrations/snowflake.mdx b/integrations/snowflake.mdx
index a02888e1..ad0a4037 100644
--- a/integrations/snowflake.mdx
+++ b/integrations/snowflake.mdx
@@ -333,7 +333,7 @@ SHOW EXTERNAL ACCESS INTEGRATIONS LIKE 'tembo_api_access_integration';
- For self-hosted Tembo, replace `https://api.tembo.io` with your deployment's base URL in both the network rule (`VALUE_LIST`) and the Python UDF (`BASE`). The rest of the flow is identical.
+ For self-hosted Tembo, replace `https://api.tembo.io` with your deployment's public API base URL (for example, `https://tembo.example.com/api/public-api`) in the Python UDF (`BASE`). Update the network rule (`VALUE_LIST`) to allow your deployment's host. The rest of the flow is identical.
diff --git a/openapi.self-hosted.yml b/openapi.self-hosted.yml
index d728f91c..cdf0535f 100644
--- a/openapi.self-hosted.yml
+++ b/openapi.self-hosted.yml
@@ -552,7 +552,7 @@ paths:
label: cURL
source: |-
curl -s -X POST \
- "https://api.tembo.io/session/${SESSION_ID}/messages" \
+ "https://tembo.example.com/api/public-api/session/${SESSION_ID}/messages" \
-H "Authorization: Bearer ${API_KEY}" \
-H "Content-Type: application/json" \
-d '{"content": "Please add a regression test for this change."}'