From 704f97e03bbc21a04c3609bcb863e187e1bf2a61 Mon Sep 17 00:00:00 2001 From: Quentin Brosse Date: Fri, 7 Nov 2025 17:40:09 +0100 Subject: [PATCH] doc: add /runs/:id rate limit --- src/langsmith/administration-overview.mdx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/langsmith/administration-overview.mdx b/src/langsmith/administration-overview.mdx index 8472464961..72ac481700 100644 --- a/src/langsmith/administration-overview.mdx +++ b/src/langsmith/administration-overview.mdx @@ -279,12 +279,13 @@ After the max events are received we will respond with a 429 until 60 seconds fr This 429 is thrown by our application load balancer and is a mechanism in place for all LangSmith users independent of plan tier to ensure continuity of service for all users. -| Method | Endpoint | Limit | Window | -| ------------- | -------- | ----- | -------- | -| DELETE | Sessions | 30 | 1 minute | -| POST OR PATCH | Runs | 5000 | 1 minute | -| POST | Feedback | 5000 | 1 minute | -| \* | \* | 2000 | 1 minute | +| Method | Endpoints | Limit | Window | +| ----------------- | ------------- | ----- | -------- | +| `DELETE` | `/sessions*` | 30 | 1 minute | +| `POST` OR `PATCH` | `/runs*` | 5000 | 1 minute | +| `GET` | `/runs/:id` | 30 | 1 minute | +| `POST` | `/feedbacks*` | 5000 | 1 minute | +| `*` | `*` | 2000 | 1 minute | The LangSmith SDK takes steps to minimize the likelihood of reaching these limits on run-related endpoints by batching up to 100 runs from a single session ID into a single API call.