From 4fe1fb153dd68202f84b8f6a89c3629105c3d6c0 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Tue, 14 Apr 2026 14:43:59 +0200 Subject: [PATCH] feat: Add link to API docs --- docs/platforms/python/usage/index.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/platforms/python/usage/index.mdx b/docs/platforms/python/usage/index.mdx index dc686940799abe..e16b9d036fdfc5 100644 --- a/docs/platforms/python/usage/index.mdx +++ b/docs/platforms/python/usage/index.mdx @@ -26,6 +26,8 @@ While capturing an event, you can also record the breadcrumbs that lead up to th +See the [API documentation](https://getsentry.github.io/sentry-python/api.html#sentry_sdk.api.capture_exception) for details on the `capture_exception` function. + ## Capturing Messages Another common operation is to capture a bare message. A message is textual information that should be sent to Sentry. Typically, our SDKs don't automatically capture messages, but you can capture them manually. @@ -33,3 +35,5 @@ Another common operation is to capture a bare message. A message is textual info Messages show up as issues on your issue stream, with the message as the issue name. + +See the [API documentation](https://getsentry.github.io/sentry-python/api.html#sentry_sdk.api.capture_message) for details on the `capture_message` function.